From 4fb40c0d3ea656bd0f67eb913ee9218e6f4714d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=AF=85=E5=A4=A7=E7=A5=9E?= <3163302184@qq.com> Date: Mon, 23 Sep 2024 10:45:40 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=A6=E8=BE=86=E7=94=B5=E5=AD=90=E5=9B=B4?= =?UTF-8?q?=E6=A0=8F=E5=90=8E=E5=8F=B0rail?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .idea/compiler.xml | 5 +- .idea/encodings.xml | 2 + .idea/jarRepositories.xml | 15 + .idea/misc.xml | 7 + .idea/uiDesigner.xml | 124 - .../src/main/resources/bootstrap.yml | 2 +- .../muyu/carrail/CloudCarRailApplication.java | 23 + .../controller/SysCorpuscleController.java | 80 + .../controller/SysFenceController.java | 106 + .../com/muyu/carrail/domain/SysCorpuscle.java | 67 + .../com/muyu/carrail/domain/SysFence.java | 95 + .../carrail/mapper/SysCorpuscleMapper.java | 21 + .../muyu/carrail/mapper/SysFenceMapper.java | 16 + .../carrail/service/ISysCorpuscleService.java | 25 + .../carrail/service/ISysFenceService.java | 38 + .../service/impl/SysCorpuscleServiceImpl.java | 43 + .../service/impl/SysFenceServiceImpl.java | 63 + .../mapper/carrail/SysFenceMapper.xml | 54 + .../mapper/carrail/SyscarRailMapper.xml | 16 + .../src/main/resources/bootstrap.yml | 4 +- .../cloud-modules-system/pom.xml | 10 +- .../muyu/system/CloudSystemApplication.java | 1 + .../com/muyu/system/rabbit/RabbitTest.java | 106 +- .../src/main/resources/bootstrap.yml | 8 +- logs/cloud-auth/error.2024-09-16.log | 38 - logs/cloud-auth/error.log | 4141 ++-- logs/cloud-auth/info.2024-09-16.log | 323 +- logs/cloud-auth/info.log | 1559 +- logs/cloud-file/error.log | 13369 ++++-------- logs/cloud-file/info.2024-09-16.log | 317 +- logs/cloud-file/info.log | 2708 +-- logs/cloud-gateway/error.2024-09-16.log | 55 - logs/cloud-gateway/error.log | 10967 +++++----- logs/cloud-gateway/info.2024-09-16.log | 864 +- logs/cloud-gateway/info.log | 7603 ++----- logs/cloud-gen/error.2024-09-16.log | 146 - logs/cloud-gen/error.log | 886 +- logs/cloud-gen/info.2024-09-16.log | 400 +- logs/cloud-gen/info.log | 283 +- logs/cloud-system/error.2024-09-16.log | 884 +- logs/cloud-system/error.log | 17553 ++-------------- logs/cloud-system/info.2024-09-16.log | 422 +- logs/cloud-system/info.log | 2237 +- logs/cloud-visual-monitor/error.log | 6232 +++--- logs/cloud-visual-monitor/info.2024-09-16.log | 1426 +- logs/cloud-visual-monitor/info.log | 4630 ++-- logs/vehicle.log | 39 - 47 files changed, 22704 insertions(+), 55309 deletions(-) delete mode 100644 .idea/uiDesigner.xml create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/CloudCarRailApplication.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/controller/SysCorpuscleController.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/controller/SysFenceController.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/domain/SysCorpuscle.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/domain/SysFence.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/mapper/SysCorpuscleMapper.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/mapper/SysFenceMapper.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/ISysCorpuscleService.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/ISysFenceService.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/impl/SysCorpuscleServiceImpl.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/impl/SysFenceServiceImpl.java create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/resources/mapper/carrail/SysFenceMapper.xml create mode 100644 cloud-server/cloud-modules/cloud-modules-car/src/main/resources/mapper/carrail/SyscarRailMapper.xml delete mode 100644 logs/cloud-auth/error.2024-09-16.log delete mode 100644 logs/cloud-gateway/error.2024-09-16.log delete mode 100644 logs/cloud-gen/error.2024-09-16.log delete mode 100644 logs/vehicle.log diff --git a/.idea/compiler.xml b/.idea/compiler.xml index 5158054..4761b56 100644 --- a/.idea/compiler.xml +++ b/.idea/compiler.xml @@ -8,7 +8,6 @@ - @@ -26,5 +25,9 @@ + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml index 694dd7e..d72a449 100644 --- a/.idea/encodings.xml +++ b/.idea/encodings.xml @@ -39,6 +39,8 @@ + + diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml index 06a56cc..cf853a1 100644 --- a/.idea/jarRepositories.xml +++ b/.idea/jarRepositories.xml @@ -1,11 +1,26 @@ + + + + + + + diff --git a/.idea/uiDesigner.xml b/.idea/uiDesigner.xml deleted file mode 100644 index 2b63946..0000000 --- a/.idea/uiDesigner.xml +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/cloud-server/cloud-gateway/src/main/resources/bootstrap.yml b/cloud-server/cloud-gateway/src/main/resources/bootstrap.yml index e737bce..17b1bcc 100644 --- a/cloud-server/cloud-gateway/src/main/resources/bootstrap.yml +++ b/cloud-server/cloud-gateway/src/main/resources/bootstrap.yml @@ -1,6 +1,6 @@ # Tomcat server: - port: 8084 + port: 8080 # nacos线上地址 nacos: diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/CloudCarRailApplication.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/CloudCarRailApplication.java new file mode 100644 index 0000000..98d9546 --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/CloudCarRailApplication.java @@ -0,0 +1,23 @@ +package com.muyu.carrail; + +import com.muyu.common.security.annotation.EnableCustomConfig; +import com.muyu.common.security.annotation.EnableMyFeignClients; +import org.mybatis.spring.annotation.MapperScan; +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; +import org.springframework.boot.autoconfigure.jdbc.DataSourceAutoConfiguration; + +@EnableCustomConfig +@EnableMyFeignClients +@MapperScan("com.muyu.carrail.mapper") +@SpringBootApplication +public class CloudCarRailApplication { + public static void main(String[] args) { +// try { +// +// } catch (Exception e) { +// e.printStackTrace(); +// } + SpringApplication.run(CloudCarRailApplication.class, args); + } +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/controller/SysCorpuscleController.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/controller/SysCorpuscleController.java new file mode 100644 index 0000000..15e083c --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/controller/SysCorpuscleController.java @@ -0,0 +1,80 @@ +package com.muyu.carrail.controller; + +import java.util.Arrays; +import java.util.List; + +import com.muyu.common.security.annotation.RequiresPermissions; +import com.muyu.common.security.utils.SecurityUtils; +import jakarta.annotation.Resource; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.validation.annotation.Validated; +import org.springframework.web.bind.annotation.*; + +import com.muyu.carrail.domain.SysCorpuscle; +import com.muyu.carrail.service.ISysCorpuscleService; +import com.muyu.common.core.web.controller.BaseController; +import com.muyu.common.core.domain.Result; + +import com.muyu.common.core.web.page.TableDataInfo; + +/** + * 电子围栏Controller + * + * @author muyu + * @date 2024-09-17 + */ +@RestController +@RequestMapping("/carRail") +public class SysCorpuscleController extends BaseController +{ + @Autowired + private ISysCorpuscleService sysCorpuscleService; + + /** + * 查询电子围栏列表 + */ + @RequiresPermissions("carRail:carRail:list") + @GetMapping("/list") + public Result> list(SysCorpuscle sysCorpuscle) + { + startPage(); + List list = sysCorpuscleService.selectSysCorpuscleList(sysCorpuscle); + return getDataTable(list); + } + + @RequiresPermissions("carRail:corpuscle:add") + @PostMapping + public Result add( + @Validated @RequestBody SysCorpuscle sysCorpuscle) + { + + return toAjax(sysCorpuscleService.save(sysCorpuscle)); + } + + /** + * 修改电子围栏 + */ + @RequiresPermissions("carRail:corpuscle:edit") + @PutMapping + public Result edit( + @Validated @RequestBody SysCorpuscle sysCorpuscle) + { + + return toAjax(sysCorpuscleService.updateById(sysCorpuscle)); + } + + + + /** + * 删除电子围栏 + */ + @RequiresPermissions("carRail:corpuscle:remove") + @DeleteMapping("/{ids}") + public Result remove(@PathVariable("ids") Long[] ids) + { + sysCorpuscleService.removeBatchByIds(Arrays.asList(ids)); + return success(); + } + +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/controller/SysFenceController.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/controller/SysFenceController.java new file mode 100644 index 0000000..a3ff506 --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/controller/SysFenceController.java @@ -0,0 +1,106 @@ +package com.muyu.carrail.controller; + +import java.util.Arrays; +import java.util.List; + +import com.muyu.carrail.domain.SysFence; +import com.muyu.carrail.service.ISysFenceService; +import jakarta.servlet.http.HttpServletResponse; +import javax.annotation.Resource; +import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.PutMapping; +import org.springframework.web.bind.annotation.DeleteMapping; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; +import com.muyu.common.security.annotation.RequiresPermissions; +import com.muyu.common.core.web.controller.BaseController; +import com.muyu.common.core.domain.Result; +import com.muyu.common.core.utils.poi.ExcelUtil; +import org.springframework.validation.annotation.Validated; +import com.muyu.common.core.web.page.TableDataInfo; + +/** + * 围栏组Controller + * + * @author muyu + * @date 2024-09-17 + */ +@RestController +@RequestMapping("/fence") +public class SysFenceController extends BaseController +{ + @Resource + private ISysFenceService sysFenceService; + + /** + * 查询围栏组列表 + */ + @RequiresPermissions("fence:fence:list") + @GetMapping("/list") + public Result> list(SysFence sysFence) + { + startPage(); + List list = sysFenceService.selectSysFenceList(sysFence); + return getDataTable(list); + } + + /** + * 导出围栏组列表 + */ + @RequiresPermissions("fence:fence:export") + @PostMapping("/export") + public void export(HttpServletResponse response, SysFence sysFence) + { + List list = sysFenceService.selectSysFenceList(sysFence); + ExcelUtil util = new ExcelUtil(SysFence.class); + util.exportExcel(response, list, "围栏组数据"); + } + + /** + * 获取围栏组详细信息 + */ + @RequiresPermissions("fence:fence:query") + @GetMapping(value = "/{id}") + public Result> getInfo(@PathVariable("id") Long id) + { + return success(sysFenceService.selectSysFenceById(id)); + } + + /** + * 新增围栏组 + */ + @RequiresPermissions("fence:fence:add") + @PostMapping + public Result add( + @Validated @RequestBody SysFence sysFence) + { + + return toAjax(sysFenceService.save(sysFence)); + } + + /** + * 修改围栏组 + */ + @RequiresPermissions("fence:fence:edit") + @PutMapping + public Result edit( + @Validated @RequestBody SysFence sysFence) + { + + return toAjax(sysFenceService.updateById(sysFence)); + } + + /** + * 删除围栏组 + */ + @RequiresPermissions("fence:fence:remove") + @DeleteMapping("/{ids}") + public Result remove(@PathVariable("ids") Long[] ids) + { + sysFenceService.removeBatchByIds(Arrays.asList(ids)); + return success(); + } +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/domain/SysCorpuscle.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/domain/SysCorpuscle.java new file mode 100644 index 0000000..2f85c6e --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/domain/SysCorpuscle.java @@ -0,0 +1,67 @@ +package com.muyu.carrail.domain; + +import com.muyu.common.core.annotation.Excel; +import com.muyu.common.core.web.domain.BaseEntity; +import lombok.*; +import lombok.experimental.SuperBuilder; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.IdType; + +/** + * 电子围栏对象 sys_corpuscle_fence + * + * @author muyu + * @date 2024-09-17 + */ + +@Data +@Setter +@Getter +@SuperBuilder +@NoArgsConstructor +@AllArgsConstructor +@TableName("sys_corpuscle_fence") +public class SysCorpuscle{ + private static final long serialVersionUID = 1L; + + /** 自增主键 */ + @TableId( type = IdType.AUTO) + private Long id; + + /** 围栏编码 */ + @Excel(name = "围栏编码") + private String fenceCode; + + /** 围栏名称 */ + @Excel(name = "围栏名称") + private String fenceName; + + /** 围栏类型(1.驶入 2.驶出) */ + @Excel(name = "围栏类型(1.驶入 2.驶出)") + private Long fenceType; + + /** 围栏位置 */ + @Excel(name = "围栏位置") + private String fencePosition; + + /** 启用状态(1.启用 2.停用) */ + @Excel(name = "启用状态(1.启用 2.停用)") + private String state; + + + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("fenceCode", getFenceCode()) + .append("fenceName", getFenceName()) + .append("fenceType", getFenceType()) + .append("fencePosition", getFencePosition()) + .append("state", getState()) + .toString(); + } +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/domain/SysFence.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/domain/SysFence.java new file mode 100644 index 0000000..b7d068b --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/domain/SysFence.java @@ -0,0 +1,95 @@ +package com.muyu.carrail.domain; + +import cn.hutool.core.date.DateTime; +import com.muyu.common.core.annotation.Excel; +import com.muyu.common.core.web.domain.BaseEntity; +import lombok.*; +import lombok.experimental.SuperBuilder; +import org.apache.commons.lang3.builder.ToStringBuilder; +import org.apache.commons.lang3.builder.ToStringStyle; +import com.baomidou.mybatisplus.annotation.TableId; +import com.baomidou.mybatisplus.annotation.TableName; +import com.baomidou.mybatisplus.annotation.IdType; + +import java.util.Date; + +/** + * 围栏组对象 sys_fence_group + * + * @author muyu + * @date 2024-09-17 + */ + +@Data +@Setter +@Getter +@SuperBuilder +@NoArgsConstructor +@AllArgsConstructor +@TableName("sys_fence_group") +public class SysFence{ + private static final long serialVersionUID = 1L; + + /** 自增主键 */ + @TableId( type = IdType.AUTO) + private Long id; + + /** 围栏组编码 */ + @Excel(name = "围栏组编码") + private String groupCode; + + /** 围栏组名称 */ + @Excel(name = "围栏组名称") + private String groupName; + + /** 围栏组类型 */ + @Excel(name = "围栏组类型") + private String groupType; + + /** 启用状态 */ + @Excel(name = "启用状态") + private String state; + + /** 创建人 */ + @Excel(name = "创建人") + private String createBy; + + /** 创建时间 */ + @Excel(name = "创建时间") + private Date createTime; + + /** 更新人 */ + @Excel(name = "更新人") + private String updateBy; + + /** 更新时间 */ + @Excel(name = "更新时间") + private Date updateTime; + + /** 启用状态 */ + @Excel(name = "启用状态") + private String remark; + +// /** sysfindname */ +// @Excel(name = "电子围栏集群") +// private String sysfindname; + + + + @Override + public String toString() { + return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE) + .append("id", getId()) + .append("groupCode", getGroupCode()) + .append("groupName", getGroupName()) + .append("groupType", getGroupType()) + .append("state", getState()) + .append("createBy", getCreateBy()) + .append("createTime", getCreateTime()) + .append("updateBy", getUpdateBy()) + .append("updateTime", getUpdateTime()) +// .append("sysfindname", getSysfindname()) + .append("remark", getRemark()) + .toString(); + } +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/mapper/SysCorpuscleMapper.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/mapper/SysCorpuscleMapper.java new file mode 100644 index 0000000..b2cb32e --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/mapper/SysCorpuscleMapper.java @@ -0,0 +1,21 @@ +package com.muyu.carrail.mapper; + +import java.util.List; +import com.muyu.carrail.domain.SysCorpuscle; +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import org.apache.ibatis.annotations.Mapper; + +/** + * 电子围栏Mapper接口 + * + * @author muyu + * @date 2024-09-17 + */ + +public interface SysCorpuscleMapper extends BaseMapper{ + + List selectCarRail(SysCorpuscle sysCorpuscle); + + boolean addCarRail(SysCorpuscle sysCorpuscle); + +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/mapper/SysFenceMapper.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/mapper/SysFenceMapper.java new file mode 100644 index 0000000..725c176 --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/mapper/SysFenceMapper.java @@ -0,0 +1,16 @@ +package com.muyu.carrail.mapper; + + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.muyu.carrail.domain.SysFence; +import org.apache.ibatis.annotations.Mapper; + +/** + * 围栏组Mapper接口 + * + * @author muyu + * @date 2024-09-17 + */ +public interface SysFenceMapper extends BaseMapper{ + +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/ISysCorpuscleService.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/ISysCorpuscleService.java new file mode 100644 index 0000000..276b2d4 --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/ISysCorpuscleService.java @@ -0,0 +1,25 @@ +package com.muyu.carrail.service; + +import java.util.List; +import com.muyu.carrail.domain.SysCorpuscle; +import com.baomidou.mybatisplus.extension.service.IService; + +/** + * 电子围栏Service接口 + * + * @author muyu + * @date 2024-09-17 + */ +public interface ISysCorpuscleService extends IService { + + /** + * 查询电子围栏列表 + * + * @param sysCorpuscle 电子围栏 + * @return 电子围栏集合 + */ + public List selectSysCorpuscleList(SysCorpuscle sysCorpuscle); + + + boolean checkIdUnique(SysCorpuscle sysCorpuscle); +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/ISysFenceService.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/ISysFenceService.java new file mode 100644 index 0000000..7ba33a8 --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/ISysFenceService.java @@ -0,0 +1,38 @@ +package com.muyu.carrail.service; + +import java.util.List; + +import com.baomidou.mybatisplus.extension.service.IService; +import com.muyu.carrail.domain.SysFence; + +/** + * 围栏组Service接口 + * + * @author muyu + * @date 2024-09-17 + */ +public interface ISysFenceService extends IService { + /** + * 精确查询围栏组 + * + * @param id 围栏组主键 + * @return 围栏组 + */ + public SysFence selectSysFenceById(Long id); + + /** + * 查询围栏组列表 + * + * @param sysFence 围栏组 + * @return 围栏组集合 + */ + public List selectSysFenceList(SysFence sysFence); + + /** + * 判断 围栏组 id是否唯一 + * @param sysFence 围栏组 + * @return 结果 + */ + Boolean checkIdUnique(SysFence sysFence); + +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/impl/SysCorpuscleServiceImpl.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/impl/SysCorpuscleServiceImpl.java new file mode 100644 index 0000000..61024fe --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/impl/SysCorpuscleServiceImpl.java @@ -0,0 +1,43 @@ +package com.muyu.carrail.service.impl; + +import java.util.List; + +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import com.muyu.carrail.mapper.SysCorpuscleMapper; +import com.muyu.carrail.domain.SysCorpuscle; +import com.muyu.carrail.service.ISysCorpuscleService; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import org.springframework.util.Assert; + +/** + * 电子围栏Service业务层处理 + * + * @author muyu + * @date 2024-09-17 + */ +@Service +public class SysCorpuscleServiceImpl + extends ServiceImpl + implements ISysCorpuscleService { + + /** + * 精确查询电子围栏 + * + * @param id 电子围栏主键 + * @return 电子围栏 + */ + @Autowired + SysCorpuscleMapper sysCorpuscleMapper; + + @Override + public List selectSysCorpuscleList(SysCorpuscle sysCorpuscle) { + return sysCorpuscleMapper.selectCarRail(sysCorpuscle); + } + + @Override + public boolean checkIdUnique(SysCorpuscle sysCorpuscle) { + return sysCorpuscleMapper.addCarRail(sysCorpuscle); + } +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/impl/SysFenceServiceImpl.java b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/impl/SysFenceServiceImpl.java new file mode 100644 index 0000000..5ebffcc --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/java/com/muyu/carrail/service/impl/SysFenceServiceImpl.java @@ -0,0 +1,63 @@ +package com.muyu.carrail.service.impl; + +import java.util.List; + +import cn.hutool.core.lang.Assert; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.muyu.carrail.domain.SysCorpuscle; +import com.muyu.carrail.domain.SysFence; +import com.muyu.carrail.mapper.SysFenceMapper; +import com.muyu.carrail.service.ISysFenceService; + +import org.apache.commons.lang3.StringUtils; +import org.springframework.stereotype.Service; + +import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; + + + +/** + * 围栏组Service业务层处理 + * + * @author muyu + * @date 2024-09-17 + */ +@Service +public class SysFenceServiceImpl + extends ServiceImpl + implements ISysFenceService { + + + @Override + public SysFence selectSysFenceById(Long id) { + + LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); + Assert.notNull(id, "id不可为空"); + queryWrapper.eq(SysFence::getId, id); + return this.getOne(queryWrapper); + } + + @Override + public List selectSysFenceList(SysFence sysFence) { + LambdaQueryWrapper queryWrapper = new LambdaQueryWrapper<>(); + if (StringUtils.isNotEmpty(sysFence.getGroupCode())){ + queryWrapper.eq(SysFence::getGroupCode, sysFence.getGroupCode()); + } + if (StringUtils.isNotEmpty(sysFence.getGroupName())){ + queryWrapper.like(SysFence::getGroupName, sysFence.getGroupName()); + } + if (StringUtils.isNotEmpty(sysFence.getGroupType())){ + queryWrapper.eq(SysFence::getGroupType, sysFence.getGroupType()); + } + if (StringUtils.isNotEmpty(sysFence.getState())){ + queryWrapper.eq(SysFence::getState, sysFence.getState()); + } + return this.list(queryWrapper); + + } + + @Override + public Boolean checkIdUnique(SysFence sysFence) { + return null; + } +} diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/resources/mapper/carrail/SysFenceMapper.xml b/cloud-server/cloud-modules/cloud-modules-car/src/main/resources/mapper/carrail/SysFenceMapper.xml new file mode 100644 index 0000000..26be2dc --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/resources/mapper/carrail/SysFenceMapper.xml @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + select id, group_code, group_name, group_type, state, create_by, create_time, update_by, update_time, remark from sys_fence_group + + + + + + + + + + + delete from sys_fence_group where id = #{id} + + + + delete from sys_fence_group where id in + + #{id} + + + diff --git a/cloud-server/cloud-modules/cloud-modules-car/src/main/resources/mapper/carrail/SyscarRailMapper.xml b/cloud-server/cloud-modules/cloud-modules-car/src/main/resources/mapper/carrail/SyscarRailMapper.xml new file mode 100644 index 0000000..c9f9205 --- /dev/null +++ b/cloud-server/cloud-modules/cloud-modules-car/src/main/resources/mapper/carrail/SyscarRailMapper.xml @@ -0,0 +1,16 @@ + + + + + + insert into sys_corpuscle_fence(fence_code,fence_name,fence_type,fence_position,state) + values(#{fenceCode},#{fenceName},#{fenceType},#{fencePosition},#{state}) + + + + + diff --git a/cloud-server/cloud-modules/cloud-modules-gen/src/main/resources/bootstrap.yml b/cloud-server/cloud-modules/cloud-modules-gen/src/main/resources/bootstrap.yml index bd41e64..87f9388 100644 --- a/cloud-server/cloud-modules/cloud-modules-gen/src/main/resources/bootstrap.yml +++ b/cloud-server/cloud-modules/cloud-modules-gen/src/main/resources/bootstrap.yml @@ -1,6 +1,6 @@ # Tomcat server: - port: 9202 + port: 9203 # nacos线上地址 nacos: @@ -47,5 +47,3 @@ spring: - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} # 系统环境Config共享配置 - application-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} - # xxl-job 配置文件 - - application-xxl-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} diff --git a/cloud-server/cloud-modules/cloud-modules-system/pom.xml b/cloud-server/cloud-modules/cloud-modules-system/pom.xml index 4116679..f718fbf 100644 --- a/cloud-server/cloud-modules/cloud-modules-system/pom.xml +++ b/cloud-server/cloud-modules/cloud-modules-system/pom.xml @@ -71,16 +71,8 @@ cloud-common-api-doc - - - com.muyu - cloud-common-xxl - - - com.muyu - cloud-common-rabbit - + diff --git a/cloud-server/cloud-modules/cloud-modules-system/src/main/java/com/muyu/system/CloudSystemApplication.java b/cloud-server/cloud-modules/cloud-modules-system/src/main/java/com/muyu/system/CloudSystemApplication.java index b01e5db..d033b18 100644 --- a/cloud-server/cloud-modules/cloud-modules-system/src/main/java/com/muyu/system/CloudSystemApplication.java +++ b/cloud-server/cloud-modules/cloud-modules-system/src/main/java/com/muyu/system/CloudSystemApplication.java @@ -18,4 +18,5 @@ public class CloudSystemApplication { public static void main (String[] args) { SpringApplication.run(CloudSystemApplication.class, args); } + } diff --git a/cloud-server/cloud-modules/cloud-modules-system/src/main/java/com/muyu/system/rabbit/RabbitTest.java b/cloud-server/cloud-modules/cloud-modules-system/src/main/java/com/muyu/system/rabbit/RabbitTest.java index 791711f..82c1c25 100644 --- a/cloud-server/cloud-modules/cloud-modules-system/src/main/java/com/muyu/system/rabbit/RabbitTest.java +++ b/cloud-server/cloud-modules/cloud-modules-system/src/main/java/com/muyu/system/rabbit/RabbitTest.java @@ -1,53 +1,53 @@ -package com.muyu.system.rabbit; - -import com.alibaba.fastjson2.JSONObject; -import com.muyu.system.domain.SysConfig; -import jakarta.annotation.PostConstruct; -import lombok.extern.log4j.Log4j2; -import org.springframework.amqp.core.Queue; -import org.springframework.amqp.rabbit.annotation.RabbitHandler; -import org.springframework.amqp.rabbit.annotation.RabbitListener; -import org.springframework.amqp.rabbit.core.RabbitTemplate; -import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.context.annotation.Bean; -import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RestController; - -@Log4j2 -@RestController -@RequestMapping("/rabbit/test") -public class RabbitTest { - - @Autowired - private RabbitTemplate rabbitTemplate; - - @Bean - public Queue initQueue(){ - return new Queue("rabbit.test.init"); - } - - @RabbitListener(queues = "rabbit.test.init") - public void msg(SysConfig sysConfig){ - log.info("消息队列:[{}], 消息内容:[{}]", "rabbit.test.init", JSONObject.toJSONString(sysConfig)); - } - - @PostConstruct - public void init(){ - new Thread(() -> { - try { - Thread.sleep(5000); - } catch (InterruptedException e) { - throw new RuntimeException(e); - } - SysConfig sysConfig = SysConfig.builder() - .configId(1L) - .configKey("ceshi-key") - .configName("测试名称") - .configType("测试类型") - .configValue("测试值") - .build(); - rabbitTemplate.convertAndSend("rabbit.test.init",sysConfig); - }).start(); - } - -} +//package com.muyu.system.rabbit; +// +//import com.alibaba.fastjson2.JSONObject; +//import com.muyu.system.domain.SysConfig; +//import jakarta.annotation.PostConstruct; +//import lombok.extern.log4j.Log4j2; +//import org.springframework.amqp.core.Queue; +//import org.springframework.amqp.rabbit.annotation.RabbitHandler; +//import org.springframework.amqp.rabbit.annotation.RabbitListener; +//import org.springframework.amqp.rabbit.core.RabbitTemplate; +//import org.springframework.beans.factory.annotation.Autowired; +//import org.springframework.context.annotation.Bean; +//import org.springframework.web.bind.annotation.RequestMapping; +//import org.springframework.web.bind.annotation.RestController; +// +//@Log4j2 +//@RestController +//@RequestMapping("/rabbit/test") +//public class RabbitTest { +// +// @Autowired +// private RabbitTemplate rabbitTemplate; +// +// @Bean +// public Queue initQueue(){ +// return new Queue("rabbit.test.init"); +// } +// +// @RabbitListener(queues = "rabbit.test.init") +// public void msg(SysConfig sysConfig){ +// log.info("消息队列:[{}], 消息内容:[{}]", "rabbit.test.init", JSONObject.toJSONString(sysConfig)); +// } +// +// @PostConstruct +// public void init(){ +// new Thread(() -> { +// try { +// Thread.sleep(5000); +// } catch (InterruptedException e) { +// throw new RuntimeException(e); +// } +// SysConfig sysConfig = SysConfig.builder() +// .configId(1L) +// .configKey("ceshi-key") +// .configName("测试名称") +// .configType("测试类型") +// .configValue("测试值") +// .build(); +// rabbitTemplate.convertAndSend("rabbit.test.init",sysConfig); +// }).start(); +// } +// +//} diff --git a/cloud-server/cloud-modules/cloud-modules-system/src/main/resources/bootstrap.yml b/cloud-server/cloud-modules/cloud-modules-system/src/main/resources/bootstrap.yml index 14a5339..585e695 100644 --- a/cloud-server/cloud-modules/cloud-modules-system/src/main/resources/bootstrap.yml +++ b/cloud-server/cloud-modules/cloud-modules-system/src/main/resources/bootstrap.yml @@ -1,6 +1,6 @@ # Tomcat server: - port: 9701 + port: 9707 # nacos线上地址 nacos: @@ -51,10 +51,8 @@ spring: - application-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} # 系统环境Config共享配置 - application-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} - # xxl-job 配置文件 - - application-xxl-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} - # rabbit 配置文件 - - application-rabbit-config-${spring.profiles.active}.${spring.cloud.nacos.config.file-extension} + + logging: level: com.muyu.system.mapper: DEBUG diff --git a/logs/cloud-auth/error.2024-09-16.log b/logs/cloud-auth/error.2024-09-16.log deleted file mode 100644 index 649238a..0000000 --- a/logs/cloud-auth/error.2024-09-16.log +++ /dev/null @@ -1,38 +0,0 @@ -20:12:08.496 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'tokenController': Lookup method resolution failed - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.checkLookupMethods(AutowiredAnnotationBeanPostProcessor.java:497) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:367) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1296) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.auth.CloudAuthApplication.main(CloudAuthApplication.java:17) -Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.muyu.auth.controller.TokenController] from ClassLoader [jdk.internal.loader.ClassLoaders$AppClassLoader@63947c6b] - at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:483) - at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:320) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.checkLookupMethods(AutowiredAnnotationBeanPostProcessor.java:475) - ... 19 common frames omitted -Caused by: java.lang.NoClassDefFoundError: com/muyu/common/core/domain/Result - at java.base/java.lang.Class.getDeclaredMethods0(Native Method) - at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3402) - at java.base/java.lang.Class.getDeclaredMethods(Class.java:2504) - at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:465) - ... 21 common frames omitted -Caused by: java.lang.ClassNotFoundException: com.muyu.common.core.domain.Result - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520) - ... 25 common frames omitted diff --git a/logs/cloud-auth/error.log b/logs/cloud-auth/error.log index cb21485..102aa2e 100644 --- a/logs/cloud-auth/error.log +++ b/logs/cloud-auth/error.log @@ -1,1798 +1,142 @@ -16:12:10.811 [nacos-grpc-client-executor-47.116.173.119-247] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559525262_117.136.120.204_26644]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.834 [nacos-grpc-client-executor-47.116.173.119-249] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559518180_117.136.120.204_26642]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.931 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.938 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.213 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.291 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.439 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.492 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.743 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.806 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.155 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.218 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.672 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.735 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.287 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:14.311 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.347 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.522 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.537 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 349600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@31572e6f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1b56c9d3, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@725be8bd, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@60e3658c}}}]] +08:59:03.635 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 19400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@189e48ef[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:17.269 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:09.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3715765df87621f7ecd42e1f6259113b, Client-RequestTS=1727053146070, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 450600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c68acb2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +08:59:09.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 450600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c68acb2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:17.778 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.453 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.159 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.617 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.632 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.931 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.200 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.289 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:23.769 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:23.834 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.328 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.611 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:26.988 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:27.483 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:28.753 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.508 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.401 [nacos-grpc-client-executor-47.116.173.119-504] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753427_117.143.60.138_58336]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.400 [nacos-grpc-client-executor-47.116.173.119-491] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560752463_117.143.60.138_58323]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.409 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.409 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.515 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.515 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.734 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.734 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:43.787 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [check,521] - Client don't receive server abilities table even empty table but server supports ability negotiation. You can check if it is need to adjust the timeout of ability negotiation by property: nacos.remote.client.grpc.channel.capability.negotiation.timeout if always fail to connect. -19:26:46.927 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 347000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1b72a229[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 450600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c68acb2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +08:59:09.230 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf8b013fd75146c50d1bc182557d720e, Client-RequestTS=1727053149129, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:09.332 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf8b013fd75146c50d1bc182557d720e, Client-RequestTS=1727053149129, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:09.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf8b013fd75146c50d1bc182557d720e, Client-RequestTS=1727053149129, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:09.535 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf8b013fd75146c50d1bc182557d720e, Client-RequestTS=1727053149129, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:09.535 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:16.226 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 143700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ed75724[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:09.704 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2067c34ceff7516f09961b8d839b683f, Client-RequestTS=1727053149593, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:09.810 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2067c34ceff7516f09961b8d839b683f, Client-RequestTS=1727053149593, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:09.919 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2067c34ceff7516f09961b8d839b683f, Client-RequestTS=1727053149593, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.019 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2067c34ceff7516f09961b8d839b683f, Client-RequestTS=1727053149593, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.019 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:24.412 [http-nio-9500-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 203700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@721d486d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] -19:27:24.414 [http-nio-9500-exec-10] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 203700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@721d486d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:10.185 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=64115b7b8f4232d2914fa20f9a82d02a, Client-RequestTS=1727053150070, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.294 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=64115b7b8f4232d2914fa20f9a82d02a, Client-RequestTS=1727053150070, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.404 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=64115b7b8f4232d2914fa20f9a82d02a, Client-RequestTS=1727053150070, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.513 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=64115b7b8f4232d2914fa20f9a82d02a, Client-RequestTS=1727053150070, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.513 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:10.670 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=881781cec1cf892ffcaacee525cc8a19, Client-RequestTS=1727053150565, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.780 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=881781cec1cf892ffcaacee525cc8a19, Client-RequestTS=1727053150565, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=881781cec1cf892ffcaacee525cc8a19, Client-RequestTS=1727053150565, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.998 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=881781cec1cf892ffcaacee525cc8a19, Client-RequestTS=1727053150565, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:10.998 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:11.168 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e7319301882e8a4bbae97f58ccd23571, Client-RequestTS=1727053151061, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:11.278 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e7319301882e8a4bbae97f58ccd23571, Client-RequestTS=1727053151061, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:11.386 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e7319301882e8a4bbae97f58ccd23571, Client-RequestTS=1727053151061, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:11.495 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e7319301882e8a4bbae97f58ccd23571, Client-RequestTS=1727053151061, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:11.495 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:11.667 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb8549b1313d0b6b1ef9e3cb6f43fdbd, Client-RequestTS=1727053151557, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:11.775 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb8549b1313d0b6b1ef9e3cb6f43fdbd, Client-RequestTS=1727053151557, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:11.883 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb8549b1313d0b6b1ef9e3cb6f43fdbd, Client-RequestTS=1727053151557, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:11.992 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb8549b1313d0b6b1ef9e3cb6f43fdbd, Client-RequestTS=1727053151557, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:11.992 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:12.164 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3d25ab89adc1a132e6bfc8fb8d07c03, Client-RequestTS=1727053152055, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:12.274 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3d25ab89adc1a132e6bfc8fb8d07c03, Client-RequestTS=1727053152055, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:12.381 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3d25ab89adc1a132e6bfc8fb8d07c03, Client-RequestTS=1727053152055, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:12.490 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3d25ab89adc1a132e6bfc8fb8d07c03, Client-RequestTS=1727053152055, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:12.490 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:12.661 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c676971b8ba22d2cee7cdb7bdbf5e495, Client-RequestTS=1727053152552, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:18.202 [http-nio-9500-exec-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 217500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@232322fa[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +08:59:18.205 [http-nio-9500-exec-4] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 217500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@232322fa[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -1818,7 +162,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -1826,7 +170,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -1878,133 +222,14 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 203700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@721d486d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 217500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@232322fa[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:28:03.651 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 44001 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@853dc90[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:06.321 [http-nio-9500-exec-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:28:06.430 [http-nio-9500-exec-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:28:06.537 [http-nio-9500-exec-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:28:06.638 [http-nio-9500-exec-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:28:06.638 [http-nio-9500-exec-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:06.759 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 702299 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d38e031[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:24.407 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 645400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b60b3f8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] -19:28:24.408 [http-nio-9500-exec-2] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 645400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b60b3f8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] +08:59:38.211 [http-nio-9500-exec-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 19900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@384ffea9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +08:59:38.211 [http-nio-9500-exec-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 19900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@384ffea9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -2030,7 +255,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -2038,7 +263,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -2090,16 +315,113 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 645400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b60b3f8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 19900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@384ffea9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:30:04.409 [http-nio-9500-exec-8] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 133399 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@43cef4b9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] -19:30:04.410 [http-nio-9500-exec-8] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 133399 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@43cef4b9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] +08:59:41.621 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 287700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@23dcfaee[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:44.745 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 797200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@bda2e55[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:47.957 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 469900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b1c10d6[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:51.280 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 513100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@e6a84a0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:54.704 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 92100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a76f6fd[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:56.208 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=12f2a5a7ea165c551963d0ca9a69f017, Client-RequestTS=1727053193200, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 277000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@106a3c0a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +08:59:56.208 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 277000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@106a3c0a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 277000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@106a3c0a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +08:59:58.220 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 294800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c15beb0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:59.735 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:59.843 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:59.945 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:00.046 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:00.046 [http-nio-9500-exec-2] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -2123,7 +445,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor84.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -2131,7 +453,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -2183,18 +505,148 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 133399 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@43cef4b9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3018d4a1, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@392b4579, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@2f1c4e51}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:37.202 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 826500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@32254f59[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 85 common frames omitted -19:30:46.574 [http-nio-9500-exec-9] ERROR c.m.c.s.r.f.RemoteUserFallbackFactory - [create,23] - 用户服务调用失败:Connect timed out executing GET http://cloud-system/user/info/admin -19:30:48.900 [http-nio-9500-exec-9] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 登录用户:admin 不存在 -com.muyu.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.muyu.auth.service.SysLoginService.login(SysLoginService.java:72) - at com.muyu.auth.controller.TokenController.login(TokenController.java:37) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:40.314 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 451900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30fe2e5d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:43.519 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 376400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@288a7838[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:46.841 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 517700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@a6fe8d1[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:50.251 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 992700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@426edb49[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:53.773 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 728700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a857b79[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:57.396 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 551300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@19f28220[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:01.108 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 311300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3adcde2a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:01.193 [http-nio-9500-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 338800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5112247d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:02:01.193 [http-nio-9500-exec-3] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 338800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5112247d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -2206,8 +658,8 @@ com.muyu.common.core.exception.ServiceException: 登录用户:admin 不存在 at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) @@ -2246,302 +698,126 @@ com.muyu.common.core.exception.ServiceException: 登录用户:admin 不存在 at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:35.464 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 5400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@61f5f7f4[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@54402c04, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b3bb1f7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@58d6b7b9}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 338800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5112247d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:02:05.955 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2e5ca52c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:38.590 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 785700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2782c41[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@54402c04, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b3bb1f7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@58d6b7b9}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:09.076 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 769700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e917cbc[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:41.802 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 526399 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@788f6783[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@54402c04, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b3bb1f7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@58d6b7b9}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:14.631 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 840200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@764739b2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:02:14.631 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 840200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@764739b2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:45.127 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 109099 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5200ff47[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@54402c04, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b3bb1f7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@58d6b7b9}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 840200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@764739b2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:51.285 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [check,521] - Client don't receive server abilities table even empty table but server supports ability negotiation. You can check if it is need to adjust the timeout of ability negotiation by property: nacos.remote.client.grpc.channel.capability.negotiation.timeout if always fail to connect. -19:31:54.299 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 269100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4104b6a6[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@54402c04, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b3bb1f7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@58d6b7b9}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:47) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.auth.CloudAuthApplication.main(CloudAuthApplication.java:17) -19:31:59.967 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=61c8ac659fd58e5a0fd8e43948caaa11, Client-RequestTS=1726572716950, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 707300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c11f17d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@54402c04, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b3bb1f7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@58d6b7b9}}}]] -19:31:59.967 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 707300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c11f17d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@54402c04, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b3bb1f7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@58d6b7b9}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 14 common frames omitted +09:03:00.687 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1a405b2d97195105257bcadaee208478, Client-RequestTS=1727053377681, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 942400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@45eec30e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:03:00.687 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 942400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@45eec30e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 707300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c11f17d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@54402c04, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5b3bb1f7, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@58d6b7b9}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 942400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@45eec30e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 10 common frames omitted -19:32:00.137 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d60b6f7d9b3a0e2d53fad77092864cf6, Client-RequestTS=1726572720027, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:00.247 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d60b6f7d9b3a0e2d53fad77092864cf6, Client-RequestTS=1726572720027, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:00.358 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d60b6f7d9b3a0e2d53fad77092864cf6, Client-RequestTS=1726572720027, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:00.466 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d60b6f7d9b3a0e2d53fad77092864cf6, Client-RequestTS=1726572720027, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:00.466 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + ... 9 common frames omitted +09:03:02.521 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 719200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@388a5daf[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:00.636 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d19dcd7dd49e5573c098316868466480, Client-RequestTS=1726572720529, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:00.744 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d19dcd7dd49e5573c098316868466480, Client-RequestTS=1726572720529, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:00.853 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d19dcd7dd49e5573c098316868466480, Client-RequestTS=1726572720529, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:00.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d19dcd7dd49e5573c098316868466480, Client-RequestTS=1726572720529, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:00.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:01.112 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5c2d7f505c2b3a241c970f9804dfe83c, Client-RequestTS=1726572721010, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:01.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5c2d7f505c2b3a241c970f9804dfe83c, Client-RequestTS=1726572721010, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:01.328 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5c2d7f505c2b3a241c970f9804dfe83c, Client-RequestTS=1726572721010, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:01.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5c2d7f505c2b3a241c970f9804dfe83c, Client-RequestTS=1726572721010, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:01.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:01.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=77caadbab7334bc8f73ff75068b7c0d4, Client-RequestTS=1726572721498, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:01.719 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=77caadbab7334bc8f73ff75068b7c0d4, Client-RequestTS=1726572721498, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:01.828 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=77caadbab7334bc8f73ff75068b7c0d4, Client-RequestTS=1726572721498, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:01.936 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=77caadbab7334bc8f73ff75068b7c0d4, Client-RequestTS=1726572721498, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:01.936 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:02.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e8b19363b93fc4615a4e35ff9a7eb07, Client-RequestTS=1726572721998, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:02.216 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e8b19363b93fc4615a4e35ff9a7eb07, Client-RequestTS=1726572721998, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:02.326 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e8b19363b93fc4615a4e35ff9a7eb07, Client-RequestTS=1726572721998, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:02.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e8b19363b93fc4615a4e35ff9a7eb07, Client-RequestTS=1726572721998, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:02.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:02.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a816cc757f8ed7ee65d9f43ac4b3bbf2, Client-RequestTS=1726572722497, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:02.713 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a816cc757f8ed7ee65d9f43ac4b3bbf2, Client-RequestTS=1726572722497, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:02.823 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a816cc757f8ed7ee65d9f43ac4b3bbf2, Client-RequestTS=1726572722497, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:02.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a816cc757f8ed7ee65d9f43ac4b3bbf2, Client-RequestTS=1726572722497, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:02.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:03.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfbcc2e9f80f9b5cf69b19850e3221d4, Client-RequestTS=1726572722994, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:03.231 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfbcc2e9f80f9b5cf69b19850e3221d4, Client-RequestTS=1726572722994, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:03.341 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfbcc2e9f80f9b5cf69b19850e3221d4, Client-RequestTS=1726572722994, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:03.450 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfbcc2e9f80f9b5cf69b19850e3221d4, Client-RequestTS=1726572722994, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:03.450 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:03.621 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22a2e76b7bf0ed5e5ba582c4f9b8b021, Client-RequestTS=1726572723513, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:03.729 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22a2e76b7bf0ed5e5ba582c4f9b8b021, Client-RequestTS=1726572723513, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:03.847 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22a2e76b7bf0ed5e5ba582c4f9b8b021, Client-RequestTS=1726572723513, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:03.962 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22a2e76b7bf0ed5e5ba582c4f9b8b021, Client-RequestTS=1726572723513, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:03.962 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:04.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb52c990b32288b0f188d64959c1458d, Client-RequestTS=1726572724014, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:04.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb52c990b32288b0f188d64959c1458d, Client-RequestTS=1726572724014, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:04.322 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb52c990b32288b0f188d64959c1458d, Client-RequestTS=1726572724014, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:04.428 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb52c990b32288b0f188d64959c1458d, Client-RequestTS=1726572724014, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:04.428 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:04.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=262384b7515fc7d66dfce2cc99892b6f, Client-RequestTS=1726572724490, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:04.707 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=262384b7515fc7d66dfce2cc99892b6f, Client-RequestTS=1726572724490, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:04.817 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=262384b7515fc7d66dfce2cc99892b6f, Client-RequestTS=1726572724490, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:04.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=262384b7515fc7d66dfce2cc99892b6f, Client-RequestTS=1726572724490, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:04.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:59:46.542 [http-nio-9500-exec-3] ERROR c.m.c.s.r.f.RemoteLogFallbackFactory - [create,23] - 日志服务调用失败:Connect timed out executing POST http://cloud-system/logininfor -feign.RetryableException: Connect timed out executing POST http://cloud-system/logininfor - at feign.FeignException.errorExecuting(FeignException.java:278) - at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:110) - at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:70) - at com.alibaba.cloud.sentinel.feign.SentinelInvocationHandler.invoke(SentinelInvocationHandler.java:108) - at jdk.proxy2/jdk.proxy2.$Proxy126.saveLogininfor(Unknown Source) - at com.muyu.auth.service.SysRecordLogService.recordLogininfor(SysRecordLogService.java:42) - at com.muyu.auth.service.SysLoginService.login(SysLoginService.java:90) - at com.muyu.auth.controller.TokenController.login(TokenController.java:37) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:35.499 [http-nio-9500-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 257100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30e13902[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:03:35.499 [http-nio-9500-exec-10] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 257100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30e13902[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -2553,8 +829,8 @@ feign.RetryableException: Connect timed out executing POST http://cloud-system/l at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) @@ -2593,42 +869,97 @@ feign.RetryableException: Connect timed out executing POST http://cloud-system/l at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getOutputStream0(HttpURLConnection.java:1430) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:1401) - at feign.Client$Default.convertAndSend(Client.java:224) - at feign.Client$Default.execute(Client.java:106) - at org.springframework.cloud.openfeign.loadbalancer.LoadBalancerUtils.executeWithLoadBalancerLifecycleProcessing(LoadBalancerUtils.java:56) - at org.springframework.cloud.openfeign.loadbalancer.LoadBalancerUtils.executeWithLoadBalancerLifecycleProcessing(LoadBalancerUtils.java:91) - at org.springframework.cloud.openfeign.loadbalancer.FeignBlockingLoadBalancerClient.execute(FeignBlockingLoadBalancerClient.java:134) - at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:100) - ... 60 common frames omitted -20:01:11.532 [http-nio-9500-exec-9] ERROR c.m.c.s.r.f.RemoteLogFallbackFactory - [create,23] - 日志服务调用失败:Connect timed out executing POST http://cloud-system/logininfor -feign.RetryableException: Connect timed out executing POST http://cloud-system/logininfor - at feign.FeignException.errorExecuting(FeignException.java:278) - at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:110) - at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:70) - at com.alibaba.cloud.sentinel.feign.SentinelInvocationHandler.invoke(SentinelInvocationHandler.java:108) - at jdk.proxy2/jdk.proxy2.$Proxy126.saveLogininfor(Unknown Source) - at com.muyu.auth.service.SysRecordLogService.recordLogininfor(SysRecordLogService.java:42) - at com.muyu.auth.service.SysLoginService.logout(SysLoginService.java:95) - at com.muyu.auth.controller.TokenController.logout(TokenController.java:50) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 257100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30e13902[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:03:40.412 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053419054_117.143.60.138_51359, request = InstanceRequest +09:03:40.513 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +09:03:40.613 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:40.714 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:40.814 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:40.814 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:43.422 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 187900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@db83f85[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:46.546 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 682400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@725b9e85[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:47.678 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:47.786 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:47.896 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:48.005 [http-nio-9500-exec-2] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:48.005 [http-nio-9500-exec-2] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -2640,8 +971,8 @@ feign.RetryableException: Connect timed out executing POST http://cloud-system/l at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doDelete(FrameworkServlet.java:936) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:596) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) @@ -2680,37 +1011,66 @@ feign.RetryableException: Connect timed out executing POST http://cloud-system/l at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getOutputStream0(HttpURLConnection.java:1430) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getOutputStream(HttpURLConnection.java:1401) - at feign.Client$Default.convertAndSend(Client.java:224) - at feign.Client$Default.execute(Client.java:106) - at org.springframework.cloud.openfeign.loadbalancer.LoadBalancerUtils.executeWithLoadBalancerLifecycleProcessing(LoadBalancerUtils.java:56) - at org.springframework.cloud.openfeign.loadbalancer.LoadBalancerUtils.executeWithLoadBalancerLifecycleProcessing(LoadBalancerUtils.java:91) - at org.springframework.cloud.openfeign.loadbalancer.FeignBlockingLoadBalancerClient.execute(FeignBlockingLoadBalancerClient.java:134) - at feign.SynchronousMethodHandler.executeAndDecode(SynchronousMethodHandler.java:100) - ... 60 common frames omitted -20:01:57.261 [http-nio-9500-exec-7] ERROR c.m.c.s.r.f.RemoteUserFallbackFactory - [create,23] - 用户服务调用失败:Connect timed out executing GET http://cloud-system/user/info/admin -20:01:57.540 [http-nio-9500-exec-7] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 登录用户:admin 不存在 -com.muyu.common.core.exception.ServiceException: 登录用户:admin 不存在 - at com.muyu.auth.service.SysLoginService.login(SysLoginService.java:72) - at com.muyu.auth.controller.TokenController.login(TokenController.java:37) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:52.856 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 942800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ea6e4f2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:03:52.856 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 942800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ea6e4f2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 942800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ea6e4f2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 14 common frames omitted +09:04:12.233 [http-nio-9500-exec-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 382200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6fa4012f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:04:12.233 [http-nio-9500-exec-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 382200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6fa4012f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -2722,8 +1082,8 @@ com.muyu.common.core.exception.ServiceException: 登录用户:admin 不存在 at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) @@ -2762,4 +1122,1267 @@ com.muyu.common.core.exception.ServiceException: 登录用户:admin 不存在 at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 382200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6fa4012f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:04:13.921 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 204300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bea802f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:04:13.921 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 204300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bea802f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 204300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bea802f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 14 common frames omitted +09:04:55.494 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 512200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@72c314fa[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:58.615 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 519700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@35d11571[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:01.819 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 332700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7eea217e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:04.272 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053502768_117.143.60.138_51601, request = ConfigBatchListenRequest +09:05:04.383 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=24d172074b21f8a32adaf237207538b0, Client-RequestTS=1727053503383, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +09:05:04.484 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=24d172074b21f8a32adaf237207538b0, Client-RequestTS=1727053503383, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:04.584 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=24d172074b21f8a32adaf237207538b0, Client-RequestTS=1727053503383, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:04.685 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=24d172074b21f8a32adaf237207538b0, Client-RequestTS=1727053503383, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:04.685 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:04.854 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5d76efd2f46fb39e8ec0d53ab713c91d, Client-RequestTS=1727053504746, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:04.965 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5d76efd2f46fb39e8ec0d53ab713c91d, Client-RequestTS=1727053504746, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:05.074 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5d76efd2f46fb39e8ec0d53ab713c91d, Client-RequestTS=1727053504746, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:05.183 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5d76efd2f46fb39e8ec0d53ab713c91d, Client-RequestTS=1727053504746, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:05.183 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:05.352 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc2dec078974c25ab3a08612d6fc1533, Client-RequestTS=1727053505244, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:05.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc2dec078974c25ab3a08612d6fc1533, Client-RequestTS=1727053505244, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:05.571 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc2dec078974c25ab3a08612d6fc1533, Client-RequestTS=1727053505244, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:05.679 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc2dec078974c25ab3a08612d6fc1533, Client-RequestTS=1727053505244, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:05.679 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:05.851 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed9b39505521a50fd01ee3ce83969f4f, Client-RequestTS=1727053505741, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:05.961 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed9b39505521a50fd01ee3ce83969f4f, Client-RequestTS=1727053505741, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:06.069 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed9b39505521a50fd01ee3ce83969f4f, Client-RequestTS=1727053505741, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:06.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed9b39505521a50fd01ee3ce83969f4f, Client-RequestTS=1727053505741, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:06.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:06.351 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56eaf1b085051c29cfcdc5de94f7a18f, Client-RequestTS=1727053506242, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:06.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56eaf1b085051c29cfcdc5de94f7a18f, Client-RequestTS=1727053506242, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:06.569 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56eaf1b085051c29cfcdc5de94f7a18f, Client-RequestTS=1727053506242, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:06.677 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56eaf1b085051c29cfcdc5de94f7a18f, Client-RequestTS=1727053506242, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:06.677 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:06.849 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6d359fe8b486d3b6d1c33ac6f70d6ae4, Client-RequestTS=1727053506740, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:06.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6d359fe8b486d3b6d1c33ac6f70d6ae4, Client-RequestTS=1727053506740, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:07.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6d359fe8b486d3b6d1c33ac6f70d6ae4, Client-RequestTS=1727053506740, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:07.176 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6d359fe8b486d3b6d1c33ac6f70d6ae4, Client-RequestTS=1727053506740, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:07.176 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:07.275 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 946600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@692c411d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:07.366 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d3f5141fcf5fdd5b7d32a23825cc357, Client-RequestTS=1727053507239, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:07.474 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d3f5141fcf5fdd5b7d32a23825cc357, Client-RequestTS=1727053507239, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:07.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d3f5141fcf5fdd5b7d32a23825cc357, Client-RequestTS=1727053507239, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:07.694 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d3f5141fcf5fdd5b7d32a23825cc357, Client-RequestTS=1727053507239, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:07.694 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:07.868 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a1f16a19ad20d7e9e1d8ac05aa083446, Client-RequestTS=1727053507758, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:07.977 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a1f16a19ad20d7e9e1d8ac05aa083446, Client-RequestTS=1727053507758, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:08.087 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a1f16a19ad20d7e9e1d8ac05aa083446, Client-RequestTS=1727053507758, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:08.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a1f16a19ad20d7e9e1d8ac05aa083446, Client-RequestTS=1727053507758, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:08.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:08.369 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76774f18042d3aa502538e7921e44506, Client-RequestTS=1727053508259, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:08.478 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76774f18042d3aa502538e7921e44506, Client-RequestTS=1727053508259, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:08.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76774f18042d3aa502538e7921e44506, Client-RequestTS=1727053508259, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:08.701 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76774f18042d3aa502538e7921e44506, Client-RequestTS=1727053508259, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:08.701 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:08.871 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68f44413212c6ed75ed29742e76e2d05, Client-RequestTS=1727053508763, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:08.980 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68f44413212c6ed75ed29742e76e2d05, Client-RequestTS=1727053508763, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:09.091 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68f44413212c6ed75ed29742e76e2d05, Client-RequestTS=1727053508763, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:09.199 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68f44413212c6ed75ed29742e76e2d05, Client-RequestTS=1727053508763, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:09.199 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:09.370 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5ac7b15d546a52e9355f08a09c84a373, Client-RequestTS=1727053509261, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:09.479 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5ac7b15d546a52e9355f08a09c84a373, Client-RequestTS=1727053509261, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:09.588 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5ac7b15d546a52e9355f08a09c84a373, Client-RequestTS=1727053509261, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:09.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5ac7b15d546a52e9355f08a09c84a373, Client-RequestTS=1727053509261, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:09.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:09.868 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d07e53b7a91b3e94c71eb08518ccc657, Client-RequestTS=1727053509758, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:09.977 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d07e53b7a91b3e94c71eb08518ccc657, Client-RequestTS=1727053509758, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:10.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d07e53b7a91b3e94c71eb08518ccc657, Client-RequestTS=1727053509758, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:10.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d07e53b7a91b3e94c71eb08518ccc657, Client-RequestTS=1727053509758, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:10.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:10.367 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=879aa57863139e6012f8e25bf82578b7, Client-RequestTS=1727053510259, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:10.398 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 567800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@33e138d6[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:10.474 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=879aa57863139e6012f8e25bf82578b7, Client-RequestTS=1727053510259, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:10.585 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=879aa57863139e6012f8e25bf82578b7, Client-RequestTS=1727053510259, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:10.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=879aa57863139e6012f8e25bf82578b7, Client-RequestTS=1727053510259, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:10.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:10.869 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b524ec6590061beb8f700fd312a6eefe, Client-RequestTS=1727053510761, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:10.979 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b524ec6590061beb8f700fd312a6eefe, Client-RequestTS=1727053510761, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:11.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b524ec6590061beb8f700fd312a6eefe, Client-RequestTS=1727053510761, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:11.199 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b524ec6590061beb8f700fd312a6eefe, Client-RequestTS=1727053510761, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:11.199 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:11.374 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b01f29e9019cfebc277279300678f54, Client-RequestTS=1727053511262, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:11.481 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b01f29e9019cfebc277279300678f54, Client-RequestTS=1727053511262, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:11.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b01f29e9019cfebc277279300678f54, Client-RequestTS=1727053511262, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:11.696 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b01f29e9019cfebc277279300678f54, Client-RequestTS=1727053511262, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:11.696 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:11.865 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eadfbcd0262e0683edd65e54a5cc59d3, Client-RequestTS=1727053511757, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:11.973 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eadfbcd0262e0683edd65e54a5cc59d3, Client-RequestTS=1727053511757, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:12.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eadfbcd0262e0683edd65e54a5cc59d3, Client-RequestTS=1727053511757, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:12.192 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eadfbcd0262e0683edd65e54a5cc59d3, Client-RequestTS=1727053511757, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:12.192 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:12.365 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2cc562c6930282b48610e5b09e425b9c, Client-RequestTS=1727053512254, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:12.476 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2cc562c6930282b48610e5b09e425b9c, Client-RequestTS=1727053512254, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:12.587 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2cc562c6930282b48610e5b09e425b9c, Client-RequestTS=1727053512254, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:12.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2cc562c6930282b48610e5b09e425b9c, Client-RequestTS=1727053512254, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:12.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:12.869 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb7a1af8e803fb1a7fee4b7256179bca, Client-RequestTS=1727053512761, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:12.979 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb7a1af8e803fb1a7fee4b7256179bca, Client-RequestTS=1727053512761, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:13.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb7a1af8e803fb1a7fee4b7256179bca, Client-RequestTS=1727053512761, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:13.199 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb7a1af8e803fb1a7fee4b7256179bca, Client-RequestTS=1727053512761, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:13.199 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:13.371 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d25015f70a7d35f45cb00495603bb4c, Client-RequestTS=1727053513262, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:13.480 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d25015f70a7d35f45cb00495603bb4c, Client-RequestTS=1727053513262, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:13.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d25015f70a7d35f45cb00495603bb4c, Client-RequestTS=1727053513262, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:13.606 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 558700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@584a33f0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:13.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d25015f70a7d35f45cb00495603bb4c, Client-RequestTS=1727053513262, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:13.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:13.873 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7f88410f1898c80f5c2b5ecc54b8ef7f, Client-RequestTS=1727053513763, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:13.983 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7f88410f1898c80f5c2b5ecc54b8ef7f, Client-RequestTS=1727053513763, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:14.092 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7f88410f1898c80f5c2b5ecc54b8ef7f, Client-RequestTS=1727053513763, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:14.201 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7f88410f1898c80f5c2b5ecc54b8ef7f, Client-RequestTS=1727053513763, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:14.201 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:14.372 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5345ad012a1b0949e37c81e80ab72948, Client-RequestTS=1727053514262, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:14.473 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5345ad012a1b0949e37c81e80ab72948, Client-RequestTS=1727053514262, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:14.573 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5345ad012a1b0949e37c81e80ab72948, Client-RequestTS=1727053514262, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:14.682 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5345ad012a1b0949e37c81e80ab72948, Client-RequestTS=1727053514262, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:14.682 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:14.855 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47a5040885fb03c756cd6a63a9407f73, Client-RequestTS=1727053514745, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:14.965 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47a5040885fb03c756cd6a63a9407f73, Client-RequestTS=1727053514745, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:15.075 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47a5040885fb03c756cd6a63a9407f73, Client-RequestTS=1727053514745, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:15.185 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47a5040885fb03c756cd6a63a9407f73, Client-RequestTS=1727053514745, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:15.185 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:15.358 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eac1ddbe1c4c75f81c6a9603a3252e3b, Client-RequestTS=1727053515246, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:15.468 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eac1ddbe1c4c75f81c6a9603a3252e3b, Client-RequestTS=1727053515246, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:15.576 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eac1ddbe1c4c75f81c6a9603a3252e3b, Client-RequestTS=1727053515246, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:15.685 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eac1ddbe1c4c75f81c6a9603a3252e3b, Client-RequestTS=1727053515246, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:15.685 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:15.853 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c8f2ada1d6a07a37ef9466178320b93, Client-RequestTS=1727053515745, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:15.961 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c8f2ada1d6a07a37ef9466178320b93, Client-RequestTS=1727053515745, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:16.071 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c8f2ada1d6a07a37ef9466178320b93, Client-RequestTS=1727053515745, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:16.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c8f2ada1d6a07a37ef9466178320b93, Client-RequestTS=1727053515745, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:16.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:16.351 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5e984ade1f4ff5d0574618527772e455, Client-RequestTS=1727053516242, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:16.461 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5e984ade1f4ff5d0574618527772e455, Client-RequestTS=1727053516242, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:16.571 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5e984ade1f4ff5d0574618527772e455, Client-RequestTS=1727053516242, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:16.682 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5e984ade1f4ff5d0574618527772e455, Client-RequestTS=1727053516242, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:16.682 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:16.853 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ffc6a1f8160ec7031473b4f586c703cd, Client-RequestTS=1727053516744, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:16.922 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 496700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2ac3a76d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:16.963 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ffc6a1f8160ec7031473b4f586c703cd, Client-RequestTS=1727053516744, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:17.071 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ffc6a1f8160ec7031473b4f586c703cd, Client-RequestTS=1727053516744, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:17.182 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ffc6a1f8160ec7031473b4f586c703cd, Client-RequestTS=1727053516744, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:17.182 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:17.352 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=36cd89a4b07429ed605706d797d2c6fb, Client-RequestTS=1727053517243, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:17.462 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=36cd89a4b07429ed605706d797d2c6fb, Client-RequestTS=1727053517243, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:17.572 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=36cd89a4b07429ed605706d797d2c6fb, Client-RequestTS=1727053517243, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:17.681 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=36cd89a4b07429ed605706d797d2c6fb, Client-RequestTS=1727053517243, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:17.681 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:17.852 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2004cf42c3e6269d1529c8fb9dcb7d96, Client-RequestTS=1727053517743, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:17.962 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2004cf42c3e6269d1529c8fb9dcb7d96, Client-RequestTS=1727053517743, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:18.069 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2004cf42c3e6269d1529c8fb9dcb7d96, Client-RequestTS=1727053517743, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:18.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2004cf42c3e6269d1529c8fb9dcb7d96, Client-RequestTS=1727053517743, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:18.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:18.351 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9abe914b535c3ba5a39e89416fb8a57, Client-RequestTS=1727053518242, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:18.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9abe914b535c3ba5a39e89416fb8a57, Client-RequestTS=1727053518242, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:18.569 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9abe914b535c3ba5a39e89416fb8a57, Client-RequestTS=1727053518242, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:18.678 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9abe914b535c3ba5a39e89416fb8a57, Client-RequestTS=1727053518242, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:18.678 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:18.847 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c42a64fa83c310840cbd70df5d5a04, Client-RequestTS=1727053518739, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:18.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c42a64fa83c310840cbd70df5d5a04, Client-RequestTS=1727053518739, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:19.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c42a64fa83c310840cbd70df5d5a04, Client-RequestTS=1727053518739, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:19.176 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c42a64fa83c310840cbd70df5d5a04, Client-RequestTS=1727053518739, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:19.176 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:19.352 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f9ad5e65d640fe8ae31f0dd1f8c075e, Client-RequestTS=1727053519241, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:19.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f9ad5e65d640fe8ae31f0dd1f8c075e, Client-RequestTS=1727053519241, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:19.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f9ad5e65d640fe8ae31f0dd1f8c075e, Client-RequestTS=1727053519241, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:22.576 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f9ad5e65d640fe8ae31f0dd1f8c075e, Client-RequestTS=1727053519241, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 592100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@225079a1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:05:22.576 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 592100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@225079a1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 592100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@225079a1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:05:22.747 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cf1c0aa370e8a0360ca71cf26fa46d6e, Client-RequestTS=1727053522637, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:22.857 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cf1c0aa370e8a0360ca71cf26fa46d6e, Client-RequestTS=1727053522637, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:22.965 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cf1c0aa370e8a0360ca71cf26fa46d6e, Client-RequestTS=1727053522637, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:23.073 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cf1c0aa370e8a0360ca71cf26fa46d6e, Client-RequestTS=1727053522637, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:23.073 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:23.245 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=30b9a70a8c4c316cd7f63a5e6ac9fc19, Client-RequestTS=1727053523136, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:23.355 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=30b9a70a8c4c316cd7f63a5e6ac9fc19, Client-RequestTS=1727053523136, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:23.465 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=30b9a70a8c4c316cd7f63a5e6ac9fc19, Client-RequestTS=1727053523136, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:23.575 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=30b9a70a8c4c316cd7f63a5e6ac9fc19, Client-RequestTS=1727053523136, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:23.575 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:23.748 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=09be6162bfea38bf09cedc305a219af7, Client-RequestTS=1727053523637, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:23.859 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=09be6162bfea38bf09cedc305a219af7, Client-RequestTS=1727053523637, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:23.969 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=09be6162bfea38bf09cedc305a219af7, Client-RequestTS=1727053523637, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:24.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=09be6162bfea38bf09cedc305a219af7, Client-RequestTS=1727053523637, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:24.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:24.250 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42c7bd0b4975dc6b9d20a3f415e209d1, Client-RequestTS=1727053524140, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:24.359 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42c7bd0b4975dc6b9d20a3f415e209d1, Client-RequestTS=1727053524140, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:24.470 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42c7bd0b4975dc6b9d20a3f415e209d1, Client-RequestTS=1727053524140, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:24.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42c7bd0b4975dc6b9d20a3f415e209d1, Client-RequestTS=1727053524140, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:24.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:24.752 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f9c29e6679f93ecd7f623837076e568, Client-RequestTS=1727053524643, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:24.862 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f9c29e6679f93ecd7f623837076e568, Client-RequestTS=1727053524643, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:24.970 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f9c29e6679f93ecd7f623837076e568, Client-RequestTS=1727053524643, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:25.081 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f9c29e6679f93ecd7f623837076e568, Client-RequestTS=1727053524643, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:25.081 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:25.248 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f2f71b309fd1f9d2f9418aeea44bd8c5, Client-RequestTS=1727053525140, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:25.356 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f2f71b309fd1f9d2f9418aeea44bd8c5, Client-RequestTS=1727053525140, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:25.465 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f2f71b309fd1f9d2f9418aeea44bd8c5, Client-RequestTS=1727053525140, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:25.576 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f2f71b309fd1f9d2f9418aeea44bd8c5, Client-RequestTS=1727053525140, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:25.576 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:25.748 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c778343808b9e758e904b6fdffa922a, Client-RequestTS=1727053525638, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:25.856 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c778343808b9e758e904b6fdffa922a, Client-RequestTS=1727053525638, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:25.965 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c778343808b9e758e904b6fdffa922a, Client-RequestTS=1727053525638, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:26.074 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c778343808b9e758e904b6fdffa922a, Client-RequestTS=1727053525638, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:26.074 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:26.247 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ4NX0.pa7zi4MK9cLd-m9hheAfSo6PWj3L75lR_huk-UIMog8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d9a135e3e0d6510745bf78cb1c79bea, Client-RequestTS=1727053526138, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:29.643 [http-nio-9500-exec-8] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 245800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5e1ce74a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:05:29.643 [http-nio-9500-exec-8] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 245800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5e1ce74a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 245800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5e1ce74a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:05:41.793 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 950500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59e59ab1[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:06:42.487 [http-nio-9500-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5N30.TzkUGHLeKJngSOMLO3QkPEu1pg3EaAc83KuYExBfqjE, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 300200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@727d79dc[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] +09:06:42.487 [http-nio-9500-exec-3] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 300200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@727d79dc[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor62.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor48.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 300200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@727d79dc[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:06:55.175 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 537800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@58944b24[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:06:58.182 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 290800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@20ec1ee9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7b6e8761, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@70c0c68b, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@64a2ef16}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:10:45.835 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=44b541eada6ed95e49c149642d74cc3a, Client-RequestTS=1727053842812, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 301800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@48a68b91[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] +09:10:45.836 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 301800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@48a68b91[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 301800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@48a68b91[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:10:46.005 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=185ecf256b6eb30c0736e9f5da43b432, Client-RequestTS=1727053845892, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:10:46.138 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=185ecf256b6eb30c0736e9f5da43b432, Client-RequestTS=1727053845892, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:10:46.241 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=185ecf256b6eb30c0736e9f5da43b432, Client-RequestTS=1727053845892, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:49:35.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d8df5e0a695ed09286a5b01a5c3294d, Client-RequestTS=1727056172611, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 683500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@490df682[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] +09:49:35.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 683500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@490df682[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 683500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@490df682[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:56:58.038 [http-nio-9500-exec-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 206100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d65e448[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] +09:56:58.042 [http-nio-9500-exec-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 206100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d65e448[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor64.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor54.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 206100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d65e448[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:57:02.969 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 495500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@694d89b3[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:58:08.035 [http-nio-9500-exec-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 526400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7be31a9e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] +09:58:08.035 [http-nio-9500-exec-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 526400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7be31a9e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor64.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor54.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 526400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7be31a9e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:59:48.049 [http-nio-9500-exec-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 540700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4cd4cd87[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] +09:59:48.049 [http-nio-9500-exec-6] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 540700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4cd4cd87[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor64.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor54.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 540700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4cd4cd87[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e951693, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1dc47961, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@621345a5}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +10:01:39.210 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=29ed4bd7c2b368149e70507be0aacb8d, Client-RequestTS=1727056899101, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:39.310 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=29ed4bd7c2b368149e70507be0aacb8d, Client-RequestTS=1727056899101, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:39.411 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=29ed4bd7c2b368149e70507be0aacb8d, Client-RequestTS=1727056899101, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:39.512 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgyNH0.Z8w5DMes6Ou253dIAcN8IPUw1OJf2uKPLF5ZQH8IeKY, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=29ed4bd7c2b368149e70507be0aacb8d, Client-RequestTS=1727056899101, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:39.512 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) diff --git a/logs/cloud-auth/info.2024-09-16.log b/logs/cloud-auth/info.2024-09-16.log index c37fc09..6afa958 100644 --- a/logs/cloud-auth/info.2024-09-16.log +++ b/logs/cloud-auth/info.2024-09-16.log @@ -1,259 +1,64 @@ -20:12:06.333 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:12:08.140 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:12:08.141 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:12:08.220 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:12:08.442 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -20:13:21.566 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:23.544 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:13:23.546 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:13:23.616 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:13:24.893 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:13:27.597 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:13:27.598 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:13:27.598 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:13:27.604 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:13:27.611 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:13:27.612 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:13:27.800 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 86c67e11-b9b6-4dfa-867b-c7fb78058c84 -20:13:27.802 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->86c67e11-b9b6-4dfa-867b-c7fb78058c84 -20:13:27.803 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:13:27.803 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:13:27.804 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:13:27.805 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:13:27.805 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:13:28.067 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726488809567_39.144.43.42_62457 -20:13:28.067 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:28.067 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Notify connected event to listeners. -20:13:28.067 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0d88 -20:13:28.067 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:13:28.069 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.0.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:13:28.113 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.0.139:9500 register finished -20:13:28.342 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.734 seconds (process running for 10.31) -20:13:28.354 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:13:28.355 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:13:28.355 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -20:13:28.371 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -20:13:28.372 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -20:13:28.373 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -20:13:28.374 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:13:28.374 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -20:13:28.375 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -20:13:28.375 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -20:13:28.376 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -20:13:28.942 [RMI TCP Connection(5)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:17:10.445 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:17:10.445 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:17:10.537 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:17:10.537 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:17:11.133 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Receive server push request, request = NotifySubscriberRequest, requestId = 10230 -20:17:11.137 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86c67e11-b9b6-4dfa-867b-c7fb78058c84] Ack server push request, request = NotifySubscriberRequest, requestId = 10230 -20:22:24.662 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:22:24.662 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.0.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:22:24.767 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:22:24.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:22:24.769 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:22:24.769 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:22:24.769 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->86c67e11-b9b6-4dfa-867b-c7fb78058c84 -20:22:24.769 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3a30c1d0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 178] -20:22:24.770 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:22:24.770 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@69c23ba6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:22:24.770 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726488809567_39.144.43.42_62457 -20:22:24.773 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5118600a[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 120] -20:22:24.773 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->86c67e11-b9b6-4dfa-867b-c7fb78058c84 -20:22:24.773 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:22:24.773 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:22:24.773 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:27:34.390 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:27:36.413 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:27:36.413 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:27:36.490 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:27:37.770 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:27:40.490 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:27:40.491 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:27:40.492 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:27:40.498 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:27:40.504 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:27:40.504 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:27:41.089 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 91b6ee99-5626-4cb1-8b2e-48b9b8c29573 -20:27:41.091 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->91b6ee99-5626-4cb1-8b2e-48b9b8c29573 -20:27:41.091 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [91b6ee99-5626-4cb1-8b2e-48b9b8c29573] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:27:41.091 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [91b6ee99-5626-4cb1-8b2e-48b9b8c29573] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:27:41.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [91b6ee99-5626-4cb1-8b2e-48b9b8c29573] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:27:41.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [91b6ee99-5626-4cb1-8b2e-48b9b8c29573] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:27:41.094 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:27:41.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [91b6ee99-5626-4cb1-8b2e-48b9b8c29573] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489662842_39.144.43.42_62471 -20:27:41.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [91b6ee99-5626-4cb1-8b2e-48b9b8c29573] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:27:41.301 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [91b6ee99-5626-4cb1-8b2e-48b9b8c29573] Notify connected event to listeners. -20:27:41.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [91b6ee99-5626-4cb1-8b2e-48b9b8c29573] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000000801108870 -20:27:41.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:27:41.303 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.0.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:27:41.344 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.0.139:9500 register finished -20:27:41.521 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.963 seconds (process running for 10.516) -20:27:41.529 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:27:41.530 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:27:41.530 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -20:27:41.537 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -20:27:41.537 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -20:27:41.539 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -20:27:41.539 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:27:41.539 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -20:27:41.539 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -20:27:41.539 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -20:27:41.539 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -20:27:41.971 [RMI TCP Connection(1)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:31:10.666 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:31:10.667 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.0.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:31:10.719 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:31:10.720 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:31:10.720 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:31:10.720 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:31:10.720 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:31:10.720 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:31:10.720 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->91b6ee99-5626-4cb1-8b2e-48b9b8c29573 -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2d0469d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 69] -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@c32ce39[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:31:10.721 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489662842_39.144.43.42_62471 -20:31:10.724 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1047be6f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 53] -20:31:10.724 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->91b6ee99-5626-4cb1-8b2e-48b9b8c29573 -20:31:10.724 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:31:10.725 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:31:10.725 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:31:31.434 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:31:33.645 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:31:33.645 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:31:33.722 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:31:35.077 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:31:37.873 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:31:37.874 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:31:37.875 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:31:37.880 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:31:37.883 [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:37.883 [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:38.286 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d2bee2e3-c166-4f4a-9c78-1f3f164b1330 -20:31:38.288 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->d2bee2e3-c166-4f4a-9c78-1f3f164b1330 -20:31:38.288 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d2bee2e3-c166-4f4a-9c78-1f3f164b1330] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:31:38.288 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d2bee2e3-c166-4f4a-9c78-1f3f164b1330] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:31:38.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d2bee2e3-c166-4f4a-9c78-1f3f164b1330] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:31:38.289 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d2bee2e3-c166-4f4a-9c78-1f3f164b1330] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:31:38.289 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:31:38.460 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d2bee2e3-c166-4f4a-9c78-1f3f164b1330] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489900022_39.144.43.42_62491 -20:31:38.461 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d2bee2e3-c166-4f4a-9c78-1f3f164b1330] Notify connected event to listeners. -20:31:38.461 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d2bee2e3-c166-4f4a-9c78-1f3f164b1330] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:31:38.461 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:31:38.461 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d2bee2e3-c166-4f4a-9c78-1f3f164b1330] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0678 -20:31:38.462 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.0.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:31:38.545 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.0.139:9500 register finished -20:31:38.784 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 10.244 seconds (process running for 10.958) -20:31:38.794 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:31:38.795 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:31:38.795 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -20:31:38.803 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -20:31:38.803 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -20:31:38.804 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -20:31:38.805 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:31:38.805 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -20:31:38.805 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -20:31:38.805 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -20:31:38.805 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -20:31:39.146 [RMI TCP Connection(2)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:32:14.277 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:32:14.277 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.0.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:32:14.318 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:32:14.319 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:32:14.319 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:32:14.319 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:32:14.319 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->d2bee2e3-c166-4f4a-9c78-1f3f164b1330 -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@70ec7cba[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 11] -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7ea48adc[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:32:14.320 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489900022_39.144.43.42_62491 -20:32:14.323 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1d65577e[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 16] -20:32:14.323 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->d2bee2e3-c166-4f4a-9c78-1f3f164b1330 -20:32:14.323 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:32:14.324 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:32:14.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -21:04:16.734 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -21:04:18.931 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -21:04:18.931 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -21:04:19.014 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -21:04:20.390 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -21:04:23.100 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -21:04:23.101 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -21:04:23.101 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -21:04:23.106 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -21:04:23.110 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -21:04:23.111 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -21:04:23.237 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 602201ad-07fc-4899-bcfe-3ea41397724e -21:04:23.239 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->602201ad-07fc-4899-bcfe-3ea41397724e -21:04:23.240 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [602201ad-07fc-4899-bcfe-3ea41397724e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -21:04:23.240 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [602201ad-07fc-4899-bcfe-3ea41397724e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -21:04:23.240 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [602201ad-07fc-4899-bcfe-3ea41397724e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -21:04:23.241 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [602201ad-07fc-4899-bcfe-3ea41397724e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -21:04:23.241 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -21:04:23.494 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [602201ad-07fc-4899-bcfe-3ea41397724e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726491865028_39.144.43.42_63057 -21:04:23.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [602201ad-07fc-4899-bcfe-3ea41397724e] Notify connected event to listeners. -21:04:23.494 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [602201ad-07fc-4899-bcfe-3ea41397724e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -21:04:23.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -21:04:23.494 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [602201ad-07fc-4899-bcfe-3ea41397724e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d12a0 -21:04:23.496 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.0.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -21:04:23.570 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.0.139:9500 register finished -21:04:23.774 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 10.144 seconds (process running for 10.996) -21:04:23.786 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -21:04:23.786 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -21:04:23.786 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -21:04:23.794 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -21:04:23.795 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -21:04:23.796 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -21:04:23.797 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -21:04:23.797 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -21:04:23.798 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -21:04:23.798 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -21:04:23.798 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -21:04:24.141 [RMI TCP Connection(5)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -21:04:58.682 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -21:04:58.682 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.0.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -21:04:58.754 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -21:04:58.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -21:04:58.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -21:04:58.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -21:04:58.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -21:04:58.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -21:04:58.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -21:04:58.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -21:04:58.755 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -21:04:58.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -21:04:58.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -21:04:58.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -21:04:58.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->602201ad-07fc-4899-bcfe-3ea41397724e -21:04:58.756 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@761876c4[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 11] -21:04:58.756 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -21:04:58.756 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3231dbc0[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -21:04:58.757 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726491865028_39.144.43.42_63057 -21:04:58.760 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3cca8e6b[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 16] -21:04:58.760 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->602201ad-07fc-4899-bcfe-3ea41397724e -21:04:58.760 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -21:04:58.761 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -21:04:58.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +19:17:29.151 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +19:17:32.436 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"] +19:17:32.438 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +19:17:32.439 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +19:17:32.538 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +19:17:34.244 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +19:17:38.013 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"] +19:17:38.213 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +19:17:38.214 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +19:17:38.215 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +19:17:38.222 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +19:17:38.226 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +19:17:38.226 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +19:17:38.328 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67 +19:17:38.330 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67 +19:17:38.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +19:17:38.331 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +19:17:38.332 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +19:17:38.332 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} +19:17:38.333 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +19:17:38.388 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726485459738_117.143.60.138_52328 +19:17:38.389 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +19:17:38.389 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67] Notify connected event to listeners. +19:17:38.389 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002253d437290 +19:17:38.389 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +19:17:38.389 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.82', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +19:17:38.410 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.82:9500 register finished +19:17:38.579 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 12.864 seconds (process running for 13.61) +19:17:38.591 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +19:17:38.592 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +19:17:38.593 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one +19:17:38.605 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 +19:17:38.605 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP +19:17:38.606 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one +19:17:38.607 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 +19:17:38.607 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP +19:17:38.607 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one +19:17:38.608 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 +19:17:38.608 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP +19:18:08.986 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +20:10:53.672 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:10:53.672 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.82', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:10:53.688 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:10:53.689 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67 +20:10:53.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@10c0185e[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1062] +20:10:53.692 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:10:53.692 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@39b3cbf9[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:10:53.692 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726485459738_117.143.60.138_52328 +20:10:53.695 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@34d6e6e3[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 643] +20:10:53.696 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->fcf7c58c-7ae2-40d4-8d57-6ad3e1354f67 +20:10:53.696 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:10:53.696 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:10:53.696 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop diff --git a/logs/cloud-auth/info.log b/logs/cloud-auth/info.log index e50cb36..a214778 100644 --- a/logs/cloud-auth/info.log +++ b/logs/cloud-auth/info.log @@ -1,1135 +1,424 @@ -14:54:35.247 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:54:37.715 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:54:37.716 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:54:37.785 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:54:39.337 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:54:42.439 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -14:54:42.440 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -14:54:42.441 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -14:54:42.447 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -14:54:42.453 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -14:54:42.453 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -14:54:42.598 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0 -14:54:42.601 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0 -14:54:42.601 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:54:42.601 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:54:42.602 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:54:42.603 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -14:54:42.603 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:54:42.876 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556084792_117.136.120.204_26258 -14:54:42.877 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:54:42.877 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Notify connected event to listeners. -14:54:42.877 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0440 -14:54:42.877 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -14:54:42.879 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -14:54:42.957 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.245.139:9500 register finished -14:54:43.182 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 11.088 seconds (process running for 12.103) -14:54:43.194 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -14:54:43.195 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -14:54:43.195 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -14:54:43.203 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -14:54:43.204 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -14:54:43.205 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -14:54:43.206 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -14:54:43.206 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -14:54:43.207 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -14:54:43.207 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -14:54:43.207 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -14:54:43.575 [RMI TCP Connection(9)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:02:21.940 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:02:21.940 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:02:22.011 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:02:22.011 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:02:22.724 [nacos-grpc-client-executor-47.116.173.119-105] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Receive server push request, request = NotifySubscriberRequest, requestId = 11825 -15:02:22.724 [nacos-grpc-client-executor-47.116.173.119-105] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0] Ack server push request, request = NotifySubscriberRequest, requestId = 11825 -15:06:07.149 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:06:07.149 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:06:07.205 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:06:07.205 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:06:07.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:06:07.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:06:07.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:06:07.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:06:07.206 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:06:07.207 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:06:07.207 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:06:07.207 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:06:07.207 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:06:07.207 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:06:07.207 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0 -15:06:07.207 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3e79ceb6[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 227] -15:06:07.208 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:06:07.208 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@210322d4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:06:07.208 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556084792_117.136.120.204_26258 -15:06:07.213 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1975c39b[Running, pool size = 4, active threads = 1, queued tasks = 0, completed tasks = 149] -15:06:07.213 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->8f499ce8-ee69-4bf5-beb0-e3a4e064a1a0 -15:06:07.213 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:06:07.214 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:06:07.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:08:01.012 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:08:03.008 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:08:03.009 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:08:03.080 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:08:04.295 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:08:07.003 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:08:07.004 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:08:07.004 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:08:07.012 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:08:07.017 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:08:07.017 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:08:07.159 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c3501f8c-7238-4231-82df-89f3a66a6149 -15:08:07.162 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->c3501f8c-7238-4231-82df-89f3a66a6149 -15:08:07.162 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:08:07.162 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:08:07.163 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:08:07.164 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:08:07.164 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:08:07.327 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556889287_117.136.120.204_26271 -15:08:07.328 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Notify connected event to listeners. -15:08:07.328 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:07.328 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:08:07.328 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d12a0 -15:08:07.329 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:08:07.406 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.245.139:9500 register finished -15:08:07.606 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.47 seconds (process running for 9.995) -15:08:07.617 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:08:07.617 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:08:07.617 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -15:08:07.624 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -15:08:07.625 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -15:08:07.627 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -15:08:07.627 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:08:07.627 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -15:08:07.628 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -15:08:07.628 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -15:08:07.628 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -15:08:08.057 [RMI TCP Connection(3)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:30:58.692 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:30:58.692 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:30:58.770 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:30:58.770 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:30:59.333 [nacos-grpc-client-executor-47.116.173.119-276] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Receive server push request, request = NotifySubscriberRequest, requestId = 12036 -15:30:59.333 [nacos-grpc-client-executor-47.116.173.119-276] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c3501f8c-7238-4231-82df-89f3a66a6149] Ack server push request, request = NotifySubscriberRequest, requestId = 12036 -15:32:43.396 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:32:43.396 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:32:43.457 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:32:43.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:32:43.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c3501f8c-7238-4231-82df-89f3a66a6149 -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@61986c11[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 490] -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:32:43.459 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3d0560ab[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:32:43.460 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556889287_117.136.120.204_26271 -15:32:43.462 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@395c7005[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 298] -15:32:43.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c3501f8c-7238-4231-82df-89f3a66a6149 -15:32:43.462 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:32:43.462 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:32:43.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:33:09.565 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:33:11.970 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:33:11.970 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:33:12.033 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:33:13.067 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:33:15.156 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:33:15.156 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:33:15.157 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:33:15.160 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:33:15.164 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:33:15.164 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:33:15.297 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 579430f8-2184-4368-b387-44d2f654e9e6 -15:33:15.299 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->579430f8-2184-4368-b387-44d2f654e9e6 -15:33:15.299 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [579430f8-2184-4368-b387-44d2f654e9e6] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:33:15.299 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [579430f8-2184-4368-b387-44d2f654e9e6] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:33:15.299 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [579430f8-2184-4368-b387-44d2f654e9e6] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:33:15.300 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [579430f8-2184-4368-b387-44d2f654e9e6] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:33:15.300 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:33:15.498 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [579430f8-2184-4368-b387-44d2f654e9e6] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558397477_117.136.120.204_26610 -15:33:15.498 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [579430f8-2184-4368-b387-44d2f654e9e6] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:33:15.498 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [579430f8-2184-4368-b387-44d2f654e9e6] Notify connected event to listeners. -15:33:15.498 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [579430f8-2184-4368-b387-44d2f654e9e6] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d14f8 -15:33:15.498 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:33:15.499 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:33:15.540 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.245.139:9500 register finished -15:33:15.663 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.12 seconds (process running for 9.793) -15:33:15.672 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:33:15.673 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:33:15.673 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -15:33:15.679 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -15:33:15.679 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -15:33:15.680 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -15:33:15.680 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:33:15.681 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -15:33:15.681 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -15:33:15.681 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -15:33:15.681 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -15:33:15.897 [RMI TCP Connection(3)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:37:51.287 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:37:51.288 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:37:51.335 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:37:51.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:37:51.337 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:37:51.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:37:51.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:37:51.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:37:51.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:37:51.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:37:51.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:37:51.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:37:51.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:37:51.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:37:51.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->579430f8-2184-4368-b387-44d2f654e9e6 -15:37:51.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@18b529f[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 91] -15:37:51.339 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:37:51.339 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1b2f7c22[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:37:51.339 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558397477_117.136.120.204_26610 -15:37:51.341 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@652dee1a[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 64] -15:37:51.341 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->579430f8-2184-4368-b387-44d2f654e9e6 -15:37:51.341 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:37:51.341 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:37:51.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:41:50.967 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:41:52.987 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:41:52.988 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:41:53.064 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:41:54.351 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:41:56.847 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:41:56.848 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:41:56.848 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:41:56.852 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:41:56.856 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:41:56.856 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:41:56.976 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 0f155215-9653-4237-9e10-87212e411343 -15:41:56.977 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->0f155215-9653-4237-9e10-87212e411343 -15:41:56.977 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f155215-9653-4237-9e10-87212e411343] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:41:56.978 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f155215-9653-4237-9e10-87212e411343] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:41:56.978 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f155215-9653-4237-9e10-87212e411343] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:41:56.978 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f155215-9653-4237-9e10-87212e411343] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:41:56.979 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:41:57.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f155215-9653-4237-9e10-87212e411343] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558919156_117.136.120.204_26623 -15:41:57.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f155215-9653-4237-9e10-87212e411343] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:41:57.175 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f155215-9653-4237-9e10-87212e411343] Notify connected event to listeners. -15:41:57.175 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f155215-9653-4237-9e10-87212e411343] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0228 -15:41:57.175 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:41:57.176 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:41:57.252 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.245.139:9500 register finished -15:41:57.462 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.218 seconds (process running for 10.032) -15:41:57.470 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:41:57.470 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:41:57.471 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -15:41:57.477 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -15:41:57.477 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -15:41:57.478 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -15:41:57.479 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:41:57.479 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -15:41:57.479 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -15:41:57.479 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -15:41:57.480 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -15:41:57.754 [RMI TCP Connection(7)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:51:37.355 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:51:37.356 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:51:37.408 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:51:37.409 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:51:37.409 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:51:37.409 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:51:37.409 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->0f155215-9653-4237-9e10-87212e411343 -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@53068900[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 192] -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:51:37.410 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@61e35e1b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:51:37.411 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558919156_117.136.120.204_26623 -15:51:37.413 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@74eb8757[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 126] -15:51:37.413 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->0f155215-9653-4237-9e10-87212e411343 -15:51:37.413 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:51:37.414 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:51:37.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:51:56.746 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:51:58.714 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:51:58.715 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:51:58.775 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:52:00.093 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:52:02.931 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:52:02.932 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:52:02.933 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:52:02.940 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:52:02.946 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:52:02.947 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:52:03.084 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca -15:52:03.086 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca -15:52:03.086 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:52:03.086 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:52:03.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:52:03.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:52:03.088 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:52:03.308 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726559525262_117.136.120.204_26644 -15:52:03.308 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:52:03.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Notify connected event to listeners. -15:52:03.308 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0228 -15:52:03.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:52:03.309 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:52:03.404 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.245.139:9500 register finished -15:52:03.583 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.71 seconds (process running for 10.347) -15:52:03.590 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:52:03.590 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:52:03.591 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -15:52:03.598 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -15:52:03.598 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -15:52:03.599 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -15:52:03.599 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:52:03.599 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -15:52:03.599 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -15:52:03.600 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -15:52:03.600 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -15:52:03.918 [RMI TCP Connection(4)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:12:10.694 [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:833) -16:12:10.815 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.816 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.850 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:12:11.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.087 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.213 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.291 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.432 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.439 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.492 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.492 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.743 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.743 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.806 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.806 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.155 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.155 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.218 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.218 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.735 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.742 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.287 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.287 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.350 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.240 [lettuce-eventExecutorLoop-1-12] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:16.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.537 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.244 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:17.270 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.526 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:17.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.076 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:18.453 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.159 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.360 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.618 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.369 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.632 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.632 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.931 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:21.935 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.045 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.289 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:23.495 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:23.607 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:23.769 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:23.834 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:25.070 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.328 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:25.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.611 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:26.730 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:26.988 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.484 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:28.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:28.754 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.135 [lettuce-eventExecutorLoop-1-14] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:29.185 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.508 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:30.358 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:30.403 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Success to connect a server [47.116.173.119:8848], connectionId = 1726560752463_117.143.60.138_58323 -16:12:30.403 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559525262_117.136.120.204_26644 -16:12:30.403 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559525262_117.136.120.204_26644 -16:12:30.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Notify disconnected event to listeners -16:12:30.404 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Notify connected event to listeners. -16:12:30.404 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:12:31.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753427_117.143.60.138_58336 -16:12:31.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559518180_117.136.120.204_26642 -16:12:31.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559518180_117.136.120.204_26642 -16:12:31.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Notify disconnected event to listeners -16:12:31.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] DisConnected,clear listen context... -16:12:31.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Notify connected event to listeners. -16:12:31.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Connected,notify listen context... -16:12:33.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-auth -16:12:45.835 [lettuce-eventExecutorLoop-1-15] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:45.908 [lettuce-nioEventLoop-4-16] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:39.397 [lettuce-nioEventLoop-4-16] 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:833) -16:28:39.401 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.401 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.401 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.435 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:28:39.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.511 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.515 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.730 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.734 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:40.036 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.036 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.208 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722292_117.136.120.204_26978 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722292_117.136.120.204_26974 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560752463_117.143.60.138_58323 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753427_117.143.60.138_58336 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560752463_117.143.60.138_58323 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753427_117.143.60.138_58336 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Notify disconnected event to listeners -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Notify disconnected event to listeners -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] DisConnected,clear listen context... -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Notify connected event to listeners. -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [8b1fe29b-cfad-4b8f-9a8a-ed67930daa54_config-0] Connected,notify listen context... -16:28:40.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Notify connected event to listeners. -16:28:40.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:28:42.009 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth -16:31:47.910 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -16:31:47.910 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -16:31:47.939 [boundedElastic-2] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:31:47.940 [boundedElastic-2] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:31:48.533 [nacos-grpc-client-executor-47.116.173.119-546] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Receive server push request, request = NotifySubscriberRequest, requestId = 12352 -16:31:48.533 [nacos-grpc-client-executor-47.116.173.119-546] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca] Ack server push request, request = NotifySubscriberRequest, requestId = 12352 -16:49:41.713 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:49:41.713 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:49:41.750 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:49:41.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:49:41.751 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7caf64ae[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1149] -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@66dcdf67[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:49:41.752 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722292_117.136.120.204_26974 -16:49:41.753 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7324c299[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 760] -16:49:41.753 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->d7e4345c-fce8-4b80-b9d0-57a4e8a3b8ca -16:49:41.753 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:49:41.754 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:49:41.754 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:50:06.753 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:50:08.772 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:50:08.773 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:50:08.844 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:50:10.166 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:50:12.801 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:50:12.802 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:50:12.803 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:50:12.809 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:50:12.813 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -16:50:12.813 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -16:50:12.954 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 45db06c1-de64-4b36-99ce-b77dd87e7926 -16:50:12.957 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->45db06c1-de64-4b36-99ce-b77dd87e7926 -16:50:12.957 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [45db06c1-de64-4b36-99ce-b77dd87e7926] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:50:12.958 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [45db06c1-de64-4b36-99ce-b77dd87e7926] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:50:12.958 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [45db06c1-de64-4b36-99ce-b77dd87e7926] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:50:12.959 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [45db06c1-de64-4b36-99ce-b77dd87e7926] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:50:12.959 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:50:13.117 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [45db06c1-de64-4b36-99ce-b77dd87e7926] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563015132_117.136.120.204_27006 -16:50:13.117 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [45db06c1-de64-4b36-99ce-b77dd87e7926] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:50:13.117 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [45db06c1-de64-4b36-99ce-b77dd87e7926] Notify connected event to listeners. -16:50:13.117 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:50:13.117 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [45db06c1-de64-4b36-99ce-b77dd87e7926] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0d88 -16:50:13.119 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:50:13.181 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.245.139:9500 register finished -16:50:13.360 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.414 seconds (process running for 9.962) -16:50:13.371 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:50:13.371 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:50:13.372 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -16:50:13.380 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -16:50:13.380 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -16:50:13.381 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -16:50:13.382 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:50:13.382 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -16:50:13.383 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -16:50:13.383 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -16:50:13.383 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -16:50:13.526 [RMI TCP Connection(3)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:53:24.562 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:53:24.562 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->45db06c1-de64-4b36-99ce-b77dd87e7926 -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@113afa83[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 63] -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@49d6ee57[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:53:24.609 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563015132_117.136.120.204_27006 -16:53:24.624 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@31133046[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 48] -16:53:24.624 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->45db06c1-de64-4b36-99ce-b77dd87e7926 -16:53:24.624 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:53:24.624 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:53:24.624 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:53:44.564 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:53:46.562 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:53:46.563 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:53:46.636 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:53:47.993 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:53:50.593 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:53:50.594 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:53:50.595 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:53:50.599 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:53:50.602 [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:50.603 [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:50.791 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 33ec6162-a219-4567-8873-02400d6dc3a9 -16:53:50.793 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->33ec6162-a219-4567-8873-02400d6dc3a9 -16:53:50.793 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [33ec6162-a219-4567-8873-02400d6dc3a9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:53:50.793 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [33ec6162-a219-4567-8873-02400d6dc3a9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:53:50.793 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [33ec6162-a219-4567-8873-02400d6dc3a9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:53:50.794 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [33ec6162-a219-4567-8873-02400d6dc3a9] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:53:50.794 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:53:50.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [33ec6162-a219-4567-8873-02400d6dc3a9] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563232951_117.136.120.204_27018 -16:53:50.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [33ec6162-a219-4567-8873-02400d6dc3a9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:53:50.939 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [33ec6162-a219-4567-8873-02400d6dc3a9] Notify connected event to listeners. -16:53:50.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [33ec6162-a219-4567-8873-02400d6dc3a9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0440 -16:53:50.939 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:53:50.940 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:53:51.010 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.245.139:9500 register finished -16:53:51.216 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.588 seconds (process running for 10.099) -16:53:51.229 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:53:51.230 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:53:51.230 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -16:53:51.241 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -16:53:51.241 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -16:53:51.242 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -16:53:51.242 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:53:51.243 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -16:53:51.243 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -16:53:51.243 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -16:53:51.243 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -16:53:51.670 [RMI TCP Connection(2)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:50:59.272 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:50:59.272 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:50:59.330 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:50:59.331 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->33ec6162-a219-4567-8873-02400d6dc3a9 -17:50:59.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@60557143[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1139] -17:50:59.333 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:50:59.333 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@111c2179[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:50:59.333 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563232951_117.136.120.204_27018 -17:50:59.335 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7408e26e[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 676] -17:50:59.335 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->33ec6162-a219-4567-8873-02400d6dc3a9 -17:50:59.335 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:50:59.336 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:50:59.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:51:19.737 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:51:21.771 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:51:21.772 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:51:21.848 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:51:23.126 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:51:25.900 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -17:51:25.901 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -17:51:25.901 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -17:51:25.906 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -17:51:25.910 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -17:51:25.910 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -17:51:26.098 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 57c1ff07-56dd-47a8-8e7f-356d86657ce7 -17:51:26.100 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->57c1ff07-56dd-47a8-8e7f-356d86657ce7 -17:51:26.100 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57c1ff07-56dd-47a8-8e7f-356d86657ce7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:51:26.100 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57c1ff07-56dd-47a8-8e7f-356d86657ce7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:51:26.100 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57c1ff07-56dd-47a8-8e7f-356d86657ce7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:51:26.101 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57c1ff07-56dd-47a8-8e7f-356d86657ce7] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -17:51:26.101 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -17:51:26.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57c1ff07-56dd-47a8-8e7f-356d86657ce7] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726566688312_117.136.120.204_27369 -17:51:26.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57c1ff07-56dd-47a8-8e7f-356d86657ce7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:51:26.313 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57c1ff07-56dd-47a8-8e7f-356d86657ce7] Notify connected event to listeners. -17:51:26.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [57c1ff07-56dd-47a8-8e7f-356d86657ce7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0d88 -17:51:26.314 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -17:51:26.314 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -17:51:26.348 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 192.168.245.139:9500 register finished -17:51:26.554 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.696 seconds (process running for 10.229) -17:51:26.571 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -17:51:26.572 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -17:51:26.572 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -17:51:26.582 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -17:51:26.582 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -17:51:26.584 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -17:51:26.584 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -17:51:26.584 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -17:51:26.584 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -17:51:26.585 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -17:51:26.585 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -17:51:26.919 [RMI TCP Connection(3)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:58:28.319 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:58:28.319 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='192.168.245.139', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:58:28.399 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:58:28.400 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:58:28.400 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->57c1ff07-56dd-47a8-8e7f-356d86657ce7 -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@131062e0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 140] -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@229582bb[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:58:28.401 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726566688312_117.136.120.204_27369 -17:58:28.403 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@15dc97ab[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 96] -17:58:28.404 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->57c1ff07-56dd-47a8-8e7f-356d86657ce7 -17:58:28.404 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:58:28.404 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:58:28.405 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -18:46:35.091 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -18:46:37.534 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:46:37.535 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -18:46:37.633 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:46:39.059 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -18:46:41.972 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -18:46:41.973 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -18:46:41.973 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -18:46:41.980 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -18:46:41.985 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -18:46:41.985 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -18:46:42.197 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 58751fd8-9f9b-4efa-bfec-49dd079c3823 -18:46:42.199 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->58751fd8-9f9b-4efa-bfec-49dd079c3823 -18:46:42.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58751fd8-9f9b-4efa-bfec-49dd079c3823] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:46:42.200 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58751fd8-9f9b-4efa-bfec-49dd079c3823] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:46:42.200 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58751fd8-9f9b-4efa-bfec-49dd079c3823] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:46:42.201 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58751fd8-9f9b-4efa-bfec-49dd079c3823] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -18:46:42.201 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -18:46:42.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58751fd8-9f9b-4efa-bfec-49dd079c3823] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726570005075_117.143.60.138_58832 -18:46:42.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58751fd8-9f9b-4efa-bfec-49dd079c3823] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:46:42.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58751fd8-9f9b-4efa-bfec-49dd079c3823] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0000 -18:46:42.765 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58751fd8-9f9b-4efa-bfec-49dd079c3823] Notify connected event to listeners. -18:46:42.765 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -18:46:42.766 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -18:46:43.008 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.39:9500 register finished -18:46:43.211 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 11.741 seconds (process running for 12.737) -18:46:43.222 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -18:46:43.222 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -18:46:43.223 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -18:46:43.231 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -18:46:43.231 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -18:46:43.233 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -18:46:43.233 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -18:46:43.233 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -18:46:43.234 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -18:46:43.234 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -18:46:43.234 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -18:46:43.629 [RMI TCP Connection(9)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:04:05.153 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:04:05.153 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:04:05.252 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:04:05.252 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:04:05.253 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:04:05.253 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:04:05.253 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:04:05.253 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:04:05.254 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:04:05.254 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:04:05.254 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:04:05.254 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:04:05.254 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:04:05.254 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:04:05.254 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->58751fd8-9f9b-4efa-bfec-49dd079c3823 -19:04:05.254 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2096dd05[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 346] -19:04:05.255 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:04:05.255 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@ba002fd[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:04:05.255 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726570005075_117.143.60.138_58832 -19:04:05.257 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5230a02f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 212] -19:04:05.258 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->58751fd8-9f9b-4efa-bfec-49dd079c3823 -19:04:05.258 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:04:05.259 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:04:05.259 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:04:20.760 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:04:22.807 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:04:22.807 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:04:22.884 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:04:24.201 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:04:26.830 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:04:26.831 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:04:26.832 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:04:26.836 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:04:26.839 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:04:26.840 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:04:26.986 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4708be13-f4fc-45aa-90ec-1bd0811d3968 -19:04:26.987 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->4708be13-f4fc-45aa-90ec-1bd0811d3968 -19:04:26.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:04:26.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:04:26.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:04:26.988 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:04:26.989 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:04:27.126 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726571069718_117.143.60.138_61302 -19:04:27.127 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:04:27.127 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Notify connected event to listeners. -19:04:27.127 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:04:27.127 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0870 -19:04:27.129 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:04:27.157 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.39:9500 register finished -19:04:27.328 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.331 seconds (process running for 9.974) -19:04:27.338 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:04:27.338 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:04:27.338 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -19:04:27.344 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -19:04:27.344 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -19:04:27.346 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -19:04:27.346 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:04:27.346 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -19:04:27.346 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -19:04:27.347 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -19:04:27.347 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -19:04:27.625 [RMI TCP Connection(2)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:26:02.936 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Server healthy check fail, currentConnection = 1726571062800_117.143.60.138_61281 -19:26:02.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:26:02.939 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:05.446 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572367535_117.143.60.138_64304 -19:26:05.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571062800_117.143.60.138_61281 -19:26:05.449 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571062800_117.143.60.138_61281 -19:26:05.455 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Notify disconnected event to listeners -19:26:05.455 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] DisConnected,clear listen context... -19:26:05.456 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Notify connected event to listeners. -19:26:05.456 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Connected,notify listen context... -19:26:36.906 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Server healthy check fail, currentConnection = 1726572367535_117.143.60.138_64304 -19:26:36.906 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:26:36.906 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:46.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:26:47.144 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:50.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572411397_117.143.60.138_64449 -19:26:50.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572367535_117.143.60.138_64304 -19:26:50.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572367535_117.143.60.138_64304 -19:26:50.957 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Notify disconnected event to listeners -19:26:50.957 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] DisConnected,clear listen context... -19:26:50.957 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Notify connected event to listeners. -19:26:50.957 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Connected,notify listen context... -19:27:13.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Server healthy check fail, currentConnection = 1726572411397_117.143.60.138_64449 -19:27:13.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:27:13.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:16.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:18.629 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572439287_117.143.60.138_64521 -19:27:18.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572411397_117.143.60.138_64449 -19:27:18.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572411397_117.143.60.138_64449 -19:27:18.630 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Notify disconnected event to listeners -19:27:18.630 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] DisConnected,clear listen context... -19:27:18.630 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Notify connected event to listeners. -19:27:18.630 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7e91c592-6b4e-4821-a128-47ae8e934960_config-0] Connected,notify listen context... -19:27:32.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Server healthy check fail, currentConnection = 1726571069718_117.143.60.138_61302 -19:27:32.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:27:32.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:37.451 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Success to connect a server [47.116.173.119:8848], connectionId = 1726572455400_117.143.60.138_64566 -19:27:37.451 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571069718_117.143.60.138_61302 -19:27:37.451 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571069718_117.143.60.138_61302 -19:27:37.451 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Notify disconnected event to listeners -19:27:37.451 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Notify connected event to listeners. -19:27:37.451 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:27:38.419 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Server check success, currentServer is 47.116.173.119:8848 -19:27:39.795 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth -19:28:00.643 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Server healthy check fail, currentConnection = 1726572455400_117.143.60.138_64566 -19:28:00.643 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:28:00.643 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:03.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:03.865 [nacos-grpc-client-executor-47.116.173.119-298] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Receive server push request, request = ClientDetectionRequest, requestId = 14489 -19:28:03.866 [nacos-grpc-client-executor-47.116.173.119-298] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Ack server push request, request = ClientDetectionRequest, requestId = 14489 -19:28:06.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:06.967 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:08.464 [nacos-grpc-client-executor-47.116.173.119-305] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1726572455400_117.143.60.138_64566]Ignore complete event,isRunning:false,isAbandon=false -19:28:08.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Success to connect a server [47.116.173.119:8848], connectionId = 1726572489797_117.143.60.138_64671 -19:28:08.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572455400_117.143.60.138_64566 -19:28:08.867 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572455400_117.143.60.138_64566 -19:28:08.867 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Notify disconnected event to listeners -19:28:08.867 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Notify connected event to listeners. -19:28:08.867 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:28:10.512 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth -19:28:30.241 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Server check success, currentServer is 47.116.173.119:8848 -19:30:05.048 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Server check success, currentServer is 47.116.173.119:8848 -19:30:35.120 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:30:35.120 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:30:35.770 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:36.553 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:36.554 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:37.274 [nacos-grpc-client-executor-47.116.173.119-346] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Receive server push request, request = NotifySubscriberRequest, requestId = 15078 -19:30:37.274 [nacos-grpc-client-executor-47.116.173.119-346] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Ack server push request, request = NotifySubscriberRequest, requestId = 15078 -19:30:43.637 [nacos-grpc-client-executor-47.116.173.119-347] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Receive server push request, request = NotifySubscriberRequest, requestId = 15119 -19:30:43.637 [nacos-grpc-client-executor-47.116.173.119-347] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:43.637 [nacos-grpc-client-executor-47.116.173.119-347] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:43.637 [nacos-grpc-client-executor-47.116.173.119-347] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Ack server push request, request = NotifySubscriberRequest, requestId = 15119 -19:30:43.763 [nacos-grpc-client-executor-47.116.173.119-349] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Receive server push request, request = NotifySubscriberRequest, requestId = 15129 -19:30:43.764 [nacos-grpc-client-executor-47.116.173.119-349] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:43.766 [nacos-grpc-client-executor-47.116.173.119-349] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:43.766 [nacos-grpc-client-executor-47.116.173.119-349] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4708be13-f4fc-45aa-90ec-1bd0811d3968] Ack server push request, request = NotifySubscriberRequest, requestId = 15129 -19:31:07.274 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:31:07.274 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->4708be13-f4fc-45aa-90ec-1bd0811d3968 -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@13c05f90[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 531] -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5407e0d4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572489797_117.143.60.138_64671 -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5b8064f7[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 356] -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->4708be13-f4fc-45aa-90ec-1bd0811d3968 -19:31:07.398 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:31:07.407 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:31:07.407 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:31:34.927 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:31:35.576 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:37.182 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:31:37.182 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:31:37.279 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:31:38.590 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f690e2da-1d48-43fb-aea6-052d10afbe9c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:31:38.794 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:38.848 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:31:41.802 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f690e2da-1d48-43fb-aea6-052d10afbe9c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:31:42.024 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:31:42.025 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:31:42.025 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:31:42.030 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:31:42.034 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:31:42.035 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:31:42.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:44.677 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 80322ec6-e783-433b-8d09-b7b63b570a30 -19:31:44.679 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->80322ec6-e783-433b-8d09-b7b63b570a30 -19:31:44.679 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:31:44.679 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:31:44.679 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:31:44.680 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:44.680 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:45.127 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f690e2da-1d48-43fb-aea6-052d10afbe9c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:31:45.534 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:46.264 [main] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,61] - Ready to get current node abilities... -19:31:46.265 [main] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,89] - Ready to initialize current node abilities, support modes: [SDK_CLIENT] -19:31:46.265 [main] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,94] - Initialize current abilities finish... -19:31:46.266 [main] INFO c.a.n.c.a.d.NacosAbilityManagerHolder - [initAbilityControlManager,85] - [AbilityControlManager] Successfully initialize AbilityControlManager -19:31:50.656 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f690e2da-1d48-43fb-aea6-052d10afbe9c_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572708420_117.143.60.138_65361 -19:31:50.656 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f690e2da-1d48-43fb-aea6-052d10afbe9c_config-0] Notify connected event to listeners. -19:31:50.656 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f690e2da-1d48-43fb-aea6-052d10afbe9c_config-0] Connected,notify listen context... -19:31:51.285 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:51.286 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:54.300 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:54.300 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:56.661 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572717317_117.143.60.138_65383 -19:31:56.661 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:31:56.661 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Notify connected event to listeners. -19:31:56.661 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [80322ec6-e783-433b-8d09-b7b63b570a30] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$573/0x00000008010c3460 -19:31:56.661 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:31:56.663 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:31:56.718 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth -19:31:56.791 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.39:9500 register finished -19:31:56.927 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 39.206 seconds (process running for 39.699) -19:31:56.937 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:31:56.937 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:31:56.938 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -19:31:56.947 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -19:31:56.948 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -19:31:56.949 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -19:31:56.950 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:31:56.950 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -19:31:56.950 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -19:31:56.951 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -19:31:56.951 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -19:31:57.047 [RMI TCP Connection(13)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:32:04.960 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f690e2da-1d48-43fb-aea6-052d10afbe9c_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:32:58.558 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:32:58.558 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:32:58.762 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:32:58.764 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:32:58.764 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:32:58.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:32:58.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:32:58.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:32:58.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:32:58.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:32:58.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:32:58.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:32:58.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:32:58.766 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:32:58.766 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->80322ec6-e783-433b-8d09-b7b63b570a30 -19:32:58.766 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4c69ae14[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 24] -19:32:58.766 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:32:58.766 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@683d8dc6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:32:58.766 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572717317_117.143.60.138_65383 -19:32:58.767 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3e76809a[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 35] -19:32:58.767 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->80322ec6-e783-433b-8d09-b7b63b570a30 -19:32:58.767 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:32:58.767 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:32:58.768 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:36:18.981 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:36:20.999 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:36:20.999 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:36:21.061 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:36:22.162 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:36:24.824 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:36:24.825 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:36:24.825 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:36:24.830 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:36:24.834 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:36:24.834 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:36:25.011 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ffab39b8-319d-4582-8583-2172bc92862d -19:36:25.013 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ffab39b8-319d-4582-8583-2172bc92862d -19:36:25.013 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ffab39b8-319d-4582-8583-2172bc92862d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:36:25.013 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ffab39b8-319d-4582-8583-2172bc92862d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:36:25.013 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ffab39b8-319d-4582-8583-2172bc92862d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:36:25.015 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ffab39b8-319d-4582-8583-2172bc92862d] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:36:25.015 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:36:25.347 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ffab39b8-319d-4582-8583-2172bc92862d] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572987841_117.143.60.138_49709 -19:36:25.347 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ffab39b8-319d-4582-8583-2172bc92862d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:36:25.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ffab39b8-319d-4582-8583-2172bc92862d] Notify connected event to listeners. -19:36:25.348 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ffab39b8-319d-4582-8583-2172bc92862d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0228 -19:36:25.348 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:36:25.349 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:36:25.418 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.39:9500 register finished -19:36:25.585 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 10.992 seconds (process running for 11.494) -19:36:25.595 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:36:25.595 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:36:25.595 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -19:36:25.602 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -19:36:25.603 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -19:36:25.604 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -19:36:25.604 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:36:25.604 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -19:36:25.605 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -19:36:25.605 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -19:36:25.605 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -19:36:26.188 [RMI TCP Connection(3)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:38:15.325 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:38:15.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:38:15.342 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:38:15.343 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:38:15.343 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:38:15.343 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:38:15.343 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ffab39b8-319d-4582-8583-2172bc92862d -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@75d9dd25[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 36] -19:38:15.344 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:38:15.345 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@46347710[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:38:15.345 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572987841_117.143.60.138_49709 -19:38:15.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6b286de1[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 33] -19:38:15.348 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ffab39b8-319d-4582-8583-2172bc92862d -19:38:15.348 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:38:15.349 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:38:15.349 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:56:25.579 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:56:27.631 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:56:27.631 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:56:27.696 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:56:28.916 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:56:31.447 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:56:31.448 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:56:31.449 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:56:31.454 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:56:31.459 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:56:31.459 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:56:32.085 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 388022a4-08c7-49ba-91a7-6b4e05f21475 -19:56:32.086 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->388022a4-08c7-49ba-91a7-6b4e05f21475 -19:56:32.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:56:32.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:56:32.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:56:32.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:56:32.088 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:56:34.145 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726574195979_117.143.60.138_50980 -19:56:34.145 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:56:34.145 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Notify connected event to listeners. -19:56:34.145 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0440 -19:56:34.145 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:56:34.147 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:56:34.328 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.39:9500 register finished -19:56:34.609 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 17.388 seconds (process running for 17.892) -19:56:34.619 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:56:34.619 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:56:34.620 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -19:56:34.627 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -19:56:34.628 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -19:56:34.629 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -19:56:34.630 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:56:34.630 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -19:56:34.630 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -19:56:34.631 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -19:56:34.631 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -19:56:34.821 [RMI TCP Connection(5)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:59:35.898 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:59:35.899 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:59:36.010 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(3) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:59:36.011 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:59:36.530 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Receive server push request, request = NotifySubscriberRequest, requestId = 16357 -19:59:36.530 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Ack server push request, request = NotifySubscriberRequest, requestId = 16357 -20:00:47.570 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Receive server push request, request = NotifySubscriberRequest, requestId = 16377 -20:00:47.570 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:47.583 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:47.583 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Ack server push request, request = NotifySubscriberRequest, requestId = 16377 -20:02:14.315 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Receive server push request, request = NotifySubscriberRequest, requestId = 16431 -20:02:14.315 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:14.315 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:14.320 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Ack server push request, request = NotifySubscriberRequest, requestId = 16431 -20:03:38.700 [nacos-grpc-client-executor-47.116.173.119-99] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Receive server push request, request = NotifySubscriberRequest, requestId = 16437 -20:03:38.701 [nacos-grpc-client-executor-47.116.173.119-99] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:03:38.701 [nacos-grpc-client-executor-47.116.173.119-99] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:03:38.703 [nacos-grpc-client-executor-47.116.173.119-99] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [388022a4-08c7-49ba-91a7-6b4e05f21475] Ack server push request, request = NotifySubscriberRequest, requestId = 16437 -20:34:51.317 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:34:51.317 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:34:51.499 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:34:51.500 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:34:51.501 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->388022a4-08c7-49ba-91a7-6b4e05f21475 -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7a2515a0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 764] -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@60af0693[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726574195979_117.143.60.138_50980 -20:34:51.505 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1ab0657[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 557] -20:34:51.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->388022a4-08c7-49ba-91a7-6b4e05f21475 -20:34:51.506 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:34:51.506 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:34:51.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:35:07.730 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:35:09.940 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:35:09.940 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:35:10.021 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:35:11.270 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:35:14.172 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:35:14.172 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:35:14.173 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:35:14.180 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:35:14.184 [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:14.185 [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:14.295 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d4fa3b85-626b-4efb-bcc7-1c48fc5898fd -20:35:14.297 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->d4fa3b85-626b-4efb-bcc7-1c48fc5898fd -20:35:14.297 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:35:14.297 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:35:14.297 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:35:14.298 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:35:14.298 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:35:14.379 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726576517038_117.143.60.138_57760 -20:35:14.379 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Notify connected event to listeners. -20:35:14.379 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:35:14.379 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:35:14.379 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d0228 -20:35:14.380 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.39', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:35:14.398 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.39:9500 register finished -20:35:14.547 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 9.4 seconds (process running for 9.979) -20:35:14.557 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:35:14.558 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:35:14.558 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP+one -20:35:14.565 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 -20:35:14.565 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP -20:35:14.566 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP+one -20:35:14.567 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:35:14.567 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP -20:35:14.567 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-auth+DEFAULT_GROUP+one -20:35:14.567 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 -20:35:14.568 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP -20:35:14.728 [RMI TCP Connection(7)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:36:41.139 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:36:41.139 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:36:41.182 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:36:41.182 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:36:41.797 [nacos-grpc-client-executor-47.116.173.119-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Receive server push request, request = NotifySubscriberRequest, requestId = 17411 -20:36:41.797 [nacos-grpc-client-executor-47.116.173.119-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4fa3b85-626b-4efb-bcc7-1c48fc5898fd] Ack server push request, request = NotifySubscriberRequest, requestId = 17411 +08:14:47.194 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +08:14:50.357 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"] +08:14:50.359 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +08:14:50.360 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +08:14:50.452 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +08:14:52.521 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +08:14:56.457 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"] +08:14:56.606 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +08:14:56.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +08:14:56.608 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +08:14:56.614 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +08:14:56.619 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +08:14:56.619 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +08:14:56.822 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f118d4ab-90df-4f15-b0f3-3be12e9e47b0 +08:14:56.825 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->f118d4ab-90df-4f15-b0f3-3be12e9e47b0 +08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +08:14:56.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +08:14:56.828 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +08:14:56.829 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:14:56.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050497268_117.143.60.138_63975 +08:14:56.971 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +08:14:56.971 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +08:14:56.972 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +08:14:56.972 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001d424431eb8 +08:14:56.973 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +08:14:56.993 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished +08:14:57.158 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 13.497 seconds (process running for 14.205) +08:14:57.175 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +08:14:57.176 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +08:14:57.177 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP +08:14:57.197 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 +08:14:57.199 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP +08:14:57.200 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP +08:14:57.201 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 +08:14:57.201 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP +08:14:57.202 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP +08:14:57.202 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 +08:14:57.203 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP +08:15:18.347 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +08:59:00.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727050486867_117.143.60.138_63960 +08:59:00.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +08:59:00.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:03.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053145133_117.143.60.138_57779 +08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050486867_117.143.60.138_63960 +08:59:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050486867_117.143.60.138_63960 +08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners +08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context... +08:59:06.069 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners. +08:59:06.070 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context... +08:59:12.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848 +08:59:21.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848 +08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727050497268_117.143.60.138_63975 +08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +08:59:38.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:41.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:44.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:44.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:47.957 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:48.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:51.280 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:51.689 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:54.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:55.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:58.220 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:58.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053200464_117.143.60.138_57892 +09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050497268_117.143.60.138_63975 +09:00:00.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050497268_117.143.60.138_63975 +09:00:00.364 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:00:00.365 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:00:00.365 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:00:00.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848 +09:00:01.045 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:00:01.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053200464_117.143.60.138_57892 +09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:34.198 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:37.310 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:40.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:40.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:43.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:43.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:46.842 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:47.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:50.251 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:50.765 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:53.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:54.382 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053145133_117.143.60.138_57779 +09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:54.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053255705_117.143.60.138_58044 +09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053145133_117.143.60.138_57779 +09:00:55.670 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053145133_117.143.60.138_57779 +09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners +09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context... +09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners. +09:00:55.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context... +09:00:57.396 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:58.098 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:01.108 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:01.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053264096_117.143.60.138_58081 +09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053200464_117.143.60.138_57892 +09:01:03.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053200464_117.143.60.138_57892 +09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:01:03.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:01:04.771 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053264096_117.143.60.138_58081 +09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:02.953 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:06.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:09.077 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:09.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053331089_117.143.60.138_58405 +09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053264096_117.143.60.138_58081 +09:02:10.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053264096_117.143.60.138_58081 +09:02:10.903 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:02:10.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:02:10.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:02:11.622 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:02:17.637 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:02:20.647 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:02:23.257 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:23.257 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:23.662 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053344576_117.143.60.138_58458 +09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053331089_117.143.60.138_58405 +09:02:24.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053331089_117.143.60.138_58405 +09:02:24.926 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:02:24.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:02:24.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:02:25.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848 +09:02:26.674 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053255705_117.143.60.138_58044 +09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:59.519 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:02.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053384268_117.143.60.138_51263 +09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053255705_117.143.60.138_58044 +09:03:04.408 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053255705_117.143.60.138_58044 +09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners +09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context... +09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners. +09:03:04.408 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context... +09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053344576_117.143.60.138_58458 +09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:03:37.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053419054_117.143.60.138_51359 +09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053344576_117.143.60.138_58458 +09:03:39.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053344576_117.143.60.138_58458 +09:03:39.316 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:03:39.317 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:03:39.317 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:03:39.363 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:03:40.410 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848 +09:03:40.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:03:40.413 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:43.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:43.815 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:03:46.546 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:46.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:46.827 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053427395_117.143.60.138_51376 +09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053419054_117.143.60.138_51359 +09:03:48.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053419054_117.143.60.138_51359 +09:03:48.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:03:48.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:03:48.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:03:49.842 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:03:55.870 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:03:58.884 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:04:01.899 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:04:04.905 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:04:05.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:04:05.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:07.907 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053446004_117.143.60.138_51435 +09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053427395_117.143.60.138_51376 +09:04:08.049 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053427395_117.143.60.138_51376 +09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:04:08.049 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:04:10.910 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:04:15.524 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848 +09:04:16.931 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server healthy check fail, currentConnection = 1727053384268_117.143.60.138_51263 +09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:04:52.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:55.603 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:58.616 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:58.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:01.819 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:05:02.121 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053502768_117.143.60.138_51601 +09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053384268_117.143.60.138_51263 +09:05:03.383 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053384268_117.143.60.138_51263 +09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners +09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context... +09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners. +09:05:03.383 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context... +09:05:04.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:05:04.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:07.380 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:10.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:05:10.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:13.606 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:05:13.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:16.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:05:17.336 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053519662_117.143.60.138_50540 +09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053502768_117.143.60.138_51601 +09:05:19.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053502768_117.143.60.138_51601 +09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify disconnected event to listeners +09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] DisConnected,clear listen context... +09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Notify connected event to listeners. +09:05:19.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Connected,notify listen context... +09:05:26.176 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cdcaa370-4743-4148-bee1-f66a56ebcf2c_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053446004_117.143.60.138_51435 +09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:05:38.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:41.903 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053543488_117.143.60.138_50019 +09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053446004_117.143.60.138_51435 +09:05:43.480 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053446004_117.143.60.138_51435 +09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:05:43.480 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:05:44.371 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:05:46.767 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server check success, currentServer is 110.42.213.184:8848 +09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Server healthy check fail, currentConnection = 1727053543488_117.143.60.138_50019 +09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:06:48.211 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053608877_117.143.60.138_64204 +09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053543488_117.143.60.138_50019 +09:06:49.870 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053543488_117.143.60.138_50019 +09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:06:49.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:06:49.933 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:06:52.163 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:06:52.164 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:55.175 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:58.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:06:58.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:59.863 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053618875_117.143.60.138_64211 +09:06:59.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053608877_117.143.60.138_64204 +09:06:59.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053608877_117.143.60.138_64204 +09:06:59.868 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify disconnected event to listeners +09:06:59.868 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Notify connected event to listeners. +09:06:59.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:07:01.189 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:08:28.919 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +09:08:28.919 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +09:08:29.147 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:08:29.159 [boundedElastic-2] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:08:29.160 [boundedElastic-2] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:08:29.690 [nacos-grpc-client-executor-110.42.213.184-790] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Receive server push request, request = NotifySubscriberRequest, requestId = 3623 +09:08:29.692 [nacos-grpc-client-executor-110.42.213.184-790] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f118d4ab-90df-4f15-b0f3-3be12e9e47b0] Ack server push request, request = NotifySubscriberRequest, requestId = 3623 +09:10:11.191 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +09:10:11.191 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +09:10:11.349 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f118d4ab-90df-4f15-b0f3-3be12e9e47b0 +09:10:11.350 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@382c9b1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1095] +09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2982b53e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053618875_117.143.60.138_64211 +09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@785faa33[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 811] +09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f118d4ab-90df-4f15-b0f3-3be12e9e47b0 +09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +09:10:11.351 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +09:10:28.921 [main] INFO c.m.a.CloudAuthApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +09:10:32.457 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9500"] +09:10:32.459 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +09:10:32.459 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +09:10:32.563 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +09:10:34.213 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +09:10:37.143 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9500"] +09:10:37.285 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +09:10:37.286 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +09:10:37.286 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +09:10:37.293 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +09:10:37.299 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:10:37.299 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:10:39.172 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b34d68e3-407a-4a29-958b-0a1a83b50230 +09:10:39.174 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->b34d68e3-407a-4a29-958b-0a1a83b50230 +09:10:39.176 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +09:10:39.177 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +09:10:39.177 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +09:10:39.179 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:10:39.179 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053840882_117.143.60.138_55808 +09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:10:41.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify connected event to listeners. +09:10:41.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001a093432588 +09:10:41.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:10:41.516 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-auth with instance Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +09:10:42.188 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:10:42.659 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-auth 10.113.37.107:9500 register finished +09:10:42.794 [main] INFO c.m.a.CloudAuthApplication - [logStarted,56] - Started CloudAuthApplication in 20.227 seconds (process running for 20.833) +09:10:42.801 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +09:10:42.801 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +09:10:42.803 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth.yml+DEFAULT_GROUP +09:10:42.810 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth.yml, group=DEFAULT_GROUP, cnt=1 +09:10:42.810 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth.yml, group=DEFAULT_GROUP +09:10:42.811 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth-dev.yml+DEFAULT_GROUP +09:10:42.811 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP, cnt=1 +09:10:42.811 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth-dev.yml, group=DEFAULT_GROUP +09:10:42.812 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-auth+DEFAULT_GROUP +09:10:42.812 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-auth, group=DEFAULT_GROUP, cnt=1 +09:10:42.812 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-auth, group=DEFAULT_GROUP +09:10:46.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:11:00.252 [http-nio-9500-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:30:50.634 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +09:30:50.635 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +09:30:50.690 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +09:30:50.691 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +09:30:51.311 [nacos-grpc-client-executor-110.42.213.184-269] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Receive server push request, request = NotifySubscriberRequest, requestId = 3671 +09:30:51.311 [nacos-grpc-client-executor-110.42.213.184-269] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Ack server push request, request = NotifySubscriberRequest, requestId = 3671 +09:49:46.089 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727053826662_117.143.60.138_55786 +09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:56:59.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:57:03.077 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056623812_117.143.60.138_55331 +09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053826662_117.143.60.138_55786 +09:57:05.138 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053826662_117.143.60.138_55786 +09:57:05.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners +09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context... +09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners. +09:57:05.139 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context... +09:57:10.468 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:57:10.468 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Success to connect a server [110.42.213.184:8848], connectionId = 1727056631310_117.143.60.138_55350 +09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053840882_117.143.60.138_55808 +09:57:11.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053840882_117.143.60.138_55808 +09:57:11.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify disconnected event to listeners +09:57:11.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Notify connected event to listeners. +09:57:11.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:57:11.247 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-auth +09:57:11.485 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:57:13.436 [nacos-grpc-client-executor-110.42.213.184-588] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Receive server push request, request = NotifySubscriberRequest, requestId = 3695 +09:57:13.437 [nacos-grpc-client-executor-110.42.213.184-588] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Ack server push request, request = NotifySubscriberRequest, requestId = 3695 +09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056623812_117.143.60.138_55331 +09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:58:02.795 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056683563_117.143.60.138_55432 +09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056623812_117.143.60.138_55331 +09:58:03.441 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056623812_117.143.60.138_55331 +09:58:03.441 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners +09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context... +09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners. +09:58:03.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context... +09:58:08.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Server check success, currentServer is 110.42.213.184:8848 +09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056683563_117.143.60.138_55432 +09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:59:11.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056752751_117.143.60.138_55537 +09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056683563_117.143.60.138_55432 +09:59:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056683563_117.143.60.138_55432 +09:59:12.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners +09:59:12.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context... +09:59:12.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners. +09:59:12.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context... +09:59:48.592 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b34d68e3-407a-4a29-958b-0a1a83b50230] Server check success, currentServer is 110.42.213.184:8848 +10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056752751_117.143.60.138_55537 +10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +10:01:38.448 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:01:40.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056899186_117.143.60.138_55926 +10:01:40.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056752751_117.143.60.138_55537 +10:01:40.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056752751_117.143.60.138_55537 +10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners +10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context... +10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners. +10:01:40.862 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context... +10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Server healthy check fail, currentConnection = 1727056899186_117.143.60.138_55926 +10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +10:03:24.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727057005276_117.143.60.138_56190 +10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056899186_117.143.60.138_55926 +10:03:26.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056899186_117.143.60.138_55926 +10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify disconnected event to listeners +10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b3a11627-58c6-4588-837d-760232986779_config-0] DisConnected,clear listen context... +10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b3a11627-58c6-4588-837d-760232986779_config-0] Notify connected event to listeners. +10:03:26.115 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b3a11627-58c6-4588-837d-760232986779_config-0] Connected,notify listen context... +10:37:30.065 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +10:37:30.067 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-auth with instance: Instance{instanceId='null', ip='10.113.37.107', port=9500, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +10:37:30.134 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +10:37:30.136 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +10:37:30.137 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +10:37:30.137 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +10:37:30.138 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b34d68e3-407a-4a29-958b-0a1a83b50230 +10:37:30.139 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@611c81c2[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1731] +10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@575072a6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +10:37:30.140 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056631310_117.143.60.138_55350 +10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@19d1c4f2[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1062] +10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b34d68e3-407a-4a29-958b-0a1a83b50230 +10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +10:37:30.141 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +10:37:30.142 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop diff --git a/logs/cloud-file/error.log b/logs/cloud-file/error.log index 3ff90d8..d8c2052 100644 --- a/logs/cloud-file/error.log +++ b/logs/cloud-file/error.log @@ -1,5384 +1,6 @@ -20:12:13.717 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysFileController': Lookup method resolution failed - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.checkLookupMethods(AutowiredAnnotationBeanPostProcessor.java:497) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:367) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1296) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.file.CloudFileApplication.main(CloudFileApplication.java:15) -Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.muyu.file.controller.SysFileController] from ClassLoader [jdk.internal.loader.ClassLoaders$AppClassLoader@63947c6b] - at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:483) - at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:320) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.checkLookupMethods(AutowiredAnnotationBeanPostProcessor.java:475) - ... 19 common frames omitted -Caused by: java.lang.NoClassDefFoundError: com/muyu/common/core/domain/Result - at java.base/java.lang.Class.getDeclaredMethods0(Native Method) - at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3402) - at java.base/java.lang.Class.getDeclaredMethods(Class.java:2504) - at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:465) - ... 21 common frames omitted -Caused by: java.lang.ClassNotFoundException: com.muyu.common.core.domain.Result - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520) - ... 25 common frames omitted -15:53:57.765 [http-nio-9202-exec-4] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:57:00.827 [http-nio-9202-exec-10] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:57:49.828 [http-nio-9202-exec-3] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:57:50.509 [http-nio-9202-exec-4] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:57:51.907 [http-nio-9202-exec-7] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:57:54.187 [http-nio-9202-exec-9] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:57:56.748 [http-nio-9202-exec-8] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:57:59.827 [http-nio-9202-exec-10] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:58:02.253 [http-nio-9202-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at jdk.internal.reflect.GeneratedMethodAccessor163.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at jdk.internal.reflect.GeneratedMethodAccessor163.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.818 [nacos-grpc-client-executor-47.116.173.119-248] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559528388_117.136.120.204_26646]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.838 [nacos-grpc-client-executor-47.116.173.119-247] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559522912_117.136.120.204_26643]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.850 [nacos-grpc-client-executor-47.116.173.119-251] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559513896_117.136.120.204_26639]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.850 [nacos-grpc-client-executor-47.116.173.119-253] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559505430_117.136.120.204_26637]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.917 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.938 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.962 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.962 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.244 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.276 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.276 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.291 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.476 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.507 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.790 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.821 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.202 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.233 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.719 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.742 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.750 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.522 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.573 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.638 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.669 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:14.500 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:14.531 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:14.609 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:14.635 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.581 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.630 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.685 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.694 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.852 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.868 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.962 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.962 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.123 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.123 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.208 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.208 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.502 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.503 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.555 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.555 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.946 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.946 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.994 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.994 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.326 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.497 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.512 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.543 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.001 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.174 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.206 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.237 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.721 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.841 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:26.004 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:26.031 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:27.583 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:27.666 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:27.711 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:27.872 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.544 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.614 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.671 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.829 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:31.596 [http-nio-9202-exec-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -16:12:31.696 [http-nio-9202-exec-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:31.804 [http-nio-9202-exec-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:31.934 [http-nio-9202-exec-4] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/actuator/health',发生系统异常. -org.springframework.web.context.request.async.AsyncRequestNotUsableException: ServletOutputStream failed to flush: java.io.IOException: Connection reset by peer - at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleHttpServletResponse.handleIOException(StandardServletAsyncWebRequest.java:320) - at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.flush(StandardServletAsyncWebRequest.java:392) - at java.base/java.io.FilterOutputStream.flush(FilterOutputStream.java:153) - at com.fasterxml.jackson.core.json.UTF8JsonGenerator.flush(UTF8JsonGenerator.java:1200) - at com.fasterxml.jackson.databind.ObjectWriter.writeValue(ObjectWriter.java:1063) - at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:483) - at org.springframework.http.converter.AbstractGenericHttpMessageConverter.write(AbstractGenericHttpMessageConverter.java:114) - at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:297) - at org.springframework.web.servlet.mvc.method.annotation.HttpEntityMethodProcessor.handleReturnValue(HttpEntityMethodProcessor.java:245) - at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:78) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:136) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: org.apache.catalina.connector.ClientAbortException: java.io.IOException: Connection reset by peer - at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:303) - at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:265) - at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:136) - at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.flush(StandardServletAsyncWebRequest.java:389) - ... 56 common frames omitted -Caused by: java.io.IOException: Connection reset by peer - at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) - at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54) - at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:132) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:97) - at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:53) - at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:532) - at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:122) - at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1378) - at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:764) - at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:728) - at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:712) - at org.apache.coyote.http11.Http11OutputBuffer$SocketOutputBuffer.flush(Http11OutputBuffer.java:559) - at org.apache.coyote.http11.filters.ChunkedOutputFilter.flush(ChunkedOutputFilter.java:157) - at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:216) - at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1244) - at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:400) - at org.apache.coyote.Response.action(Response.java:208) - at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:299) - ... 59 common frames omitted -16:28:39.401 [nacos-grpc-client-executor-47.116.173.119-526] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753809_117.143.60.138_58349]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.401 [nacos-grpc-client-executor-47.116.173.119-508] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753598_117.143.60.138_58342]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.401 [nacos-grpc-client-executor-47.116.173.119-515] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753610_117.143.60.138_58343]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.401 [nacos-grpc-client-executor-47.116.173.119-507] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753537_117.143.60.138_58338]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.408 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.410 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.416 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.422 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.515 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.531 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.532 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.532 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.733 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.750 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.751 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.751 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:49:41.623 [http-nio-9202-exec-7] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/actuator/health',发生未知异常. -reactor.core.Exceptions$ReactiveException: java.lang.InterruptedException - at reactor.core.Exceptions.propagate(Exceptions.java:410) - at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:96) - at reactor.core.publisher.Mono.block(Mono.java:1779) - at org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration$AdaptedReactiveHealthContributors$1.getHealth(HealthEndpointConfiguration.java:173) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor110.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor94.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1048) - at java.base/java.util.concurrent.CountDownLatch.await(CountDownLatch.java:230) - at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:91) - ... 73 common frames omitted -17:56:07.262 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:56:40.355 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:57:13.400 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:57:46.441 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:58:19.552 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:58:37.560 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -19:18:39.314 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:19:12.362 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:19:45.399 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:20:18.450 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:20:51.484 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:21:24.506 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:21:57.546 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:22:30.569 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:23:03.607 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:23:36.634 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:24:09.664 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:24:42.698 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:25:15.870 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:25:48.896 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Connect timed out -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:99) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:22.094 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:55.276 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:23.763 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 111799 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6b3c1b08[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:24.396 [http-nio-9300-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 984899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12972796[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] -19:27:24.406 [http-nio-9300-exec-3] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 984899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12972796[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] +08:58:58.215 [http-nio-9300-exec-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 833100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3844ae44[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +08:58:58.221 [http-nio-9300-exec-9] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 833100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3844ae44[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -5404,7 +26,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor82.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -5412,7 +34,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor68.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -5464,14 +86,84 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 984899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12972796[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 833100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3844ae44[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:27:25.447 [http-nio-9202-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 806500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6d5e2804[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] -19:27:25.453 [http-nio-9202-exec-3] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 806500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6d5e2804[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] +08:59:00.107 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 108800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@961ce6c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:03.230 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 487800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@64bdd163[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:07.770 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 592000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5a097daf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +08:59:07.770 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 592000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5a097daf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 592000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5a097daf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 14 common frames omitted +08:59:16.799 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 587800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@836d453[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +08:59:16.799 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 587800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@836d453[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 587800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@836d453[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 14 common frames omitted +08:59:18.202 [http-nio-9300-exec-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 439500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4457d4f5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +08:59:18.202 [http-nio-9300-exec-6] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 439500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4457d4f5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -5497,7 +189,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -5505,7 +197,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -5518,9 +210,9 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -5557,316 +249,426 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 806500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6d5e2804[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 439500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4457d4f5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:27:26.909 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 28 milliseconds, 505100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@14cdb7c5[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:30.128 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 72000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66845afa[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:33.456 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 385800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1101f412[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:35.835 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 688801 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@18690da9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:38.967 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 114700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@574fc2f9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:39.842 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 778801 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@42eeb46c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:42.971 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 256501 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@32fea175[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:46.192 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 764301 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@51540332[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:49.526 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 25 milliseconds, 866399 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@703af68a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:52.963 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19 milliseconds, 597100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@353345a3[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:54.222 [http-nio-9202-exec-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 387600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@a4780e2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] -19:27:54.222 [http-nio-9202-exec-6] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 387600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@a4780e2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] +08:59:26.297 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e16ece94f61d062516c60f32e3667d5c, Client-RequestTS=1727053163287, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 383100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ec49d4b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +08:59:26.297 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 383100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ec49d4b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 387600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@a4780e2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 383100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ec49d4b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 85 common frames omitted -19:27:56.500 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 27 milliseconds, 487000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@283d768f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] + ... 9 common frames omitted +08:59:26.454 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b85bbd86dded2e1d770b6a906ba9b51d, Client-RequestTS=1727053166348, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:26.563 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b85bbd86dded2e1d770b6a906ba9b51d, Client-RequestTS=1727053166348, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:26.674 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b85bbd86dded2e1d770b6a906ba9b51d, Client-RequestTS=1727053166348, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:26.783 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b85bbd86dded2e1d770b6a906ba9b51d, Client-RequestTS=1727053166348, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:26.783 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:26.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1fcc6003ec7a250c5868f5be6ad73721, Client-RequestTS=1727053166847, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:27.069 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1fcc6003ec7a250c5868f5be6ad73721, Client-RequestTS=1727053166847, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:27.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1fcc6003ec7a250c5868f5be6ad73721, Client-RequestTS=1727053166847, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:27.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1fcc6003ec7a250c5868f5be6ad73721, Client-RequestTS=1727053166847, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:27.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:27.458 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0cf92f529bc23188ea00b64bdaa1d308, Client-RequestTS=1727053167349, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:27.566 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0cf92f529bc23188ea00b64bdaa1d308, Client-RequestTS=1727053167349, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:27.676 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0cf92f529bc23188ea00b64bdaa1d308, Client-RequestTS=1727053167349, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:27.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0cf92f529bc23188ea00b64bdaa1d308, Client-RequestTS=1727053167349, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:27.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:27.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c4d28d5340b2d1223a68c72abd8cadd, Client-RequestTS=1727053167849, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:28.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c4d28d5340b2d1223a68c72abd8cadd, Client-RequestTS=1727053167849, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:28.178 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c4d28d5340b2d1223a68c72abd8cadd, Client-RequestTS=1727053167849, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:28.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8c4d28d5340b2d1223a68c72abd8cadd, Client-RequestTS=1727053167849, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:28.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:28.457 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8226aad05ede2fcfb698a648374ee28, Client-RequestTS=1727053168348, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:28.566 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8226aad05ede2fcfb698a648374ee28, Client-RequestTS=1727053168348, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:28.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8226aad05ede2fcfb698a648374ee28, Client-RequestTS=1727053168348, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:28.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8226aad05ede2fcfb698a648374ee28, Client-RequestTS=1727053168348, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:28.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:28.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b51c63f401718ef2aabbdbf586efa642, Client-RequestTS=1727053168846, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:29.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b51c63f401718ef2aabbdbf586efa642, Client-RequestTS=1727053168846, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:29.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b51c63f401718ef2aabbdbf586efa642, Client-RequestTS=1727053168846, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:29.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b51c63f401718ef2aabbdbf586efa642, Client-RequestTS=1727053168846, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:29.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:29.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=253a37e58a08214dd87f09aac7140583, Client-RequestTS=1727053169350, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:29.569 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=253a37e58a08214dd87f09aac7140583, Client-RequestTS=1727053169350, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:29.679 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=253a37e58a08214dd87f09aac7140583, Client-RequestTS=1727053169350, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:29.789 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=253a37e58a08214dd87f09aac7140583, Client-RequestTS=1727053169350, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:29.789 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:29.961 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d742764ce57385347205111a383edb18, Client-RequestTS=1727053169852, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:30.071 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d742764ce57385347205111a383edb18, Client-RequestTS=1727053169852, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:30.178 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d742764ce57385347205111a383edb18, Client-RequestTS=1727053169852, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:30.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d742764ce57385347205111a383edb18, Client-RequestTS=1727053169852, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:30.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:30.456 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47d4515ea9afe832f90c90e84ea1a031, Client-RequestTS=1727053170348, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:30.566 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47d4515ea9afe832f90c90e84ea1a031, Client-RequestTS=1727053170348, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:30.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47d4515ea9afe832f90c90e84ea1a031, Client-RequestTS=1727053170348, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:30.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47d4515ea9afe832f90c90e84ea1a031, Client-RequestTS=1727053170348, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:30.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:30.954 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb5a5ad2a75000fec21265d0989fb447, Client-RequestTS=1727053170845, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:31.064 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb5a5ad2a75000fec21265d0989fb447, Client-RequestTS=1727053170845, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:31.174 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb5a5ad2a75000fec21265d0989fb447, Client-RequestTS=1727053170845, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:31.284 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb5a5ad2a75000fec21265d0989fb447, Client-RequestTS=1727053170845, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:31.284 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:31.455 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74671a164f604182854d60a7e064ab6e, Client-RequestTS=1727053171346, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:31.517 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 765100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7182ff1c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:00.116 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 112700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7debbddb[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:31.563 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74671a164f604182854d60a7e064ab6e, Client-RequestTS=1727053171346, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:31.672 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74671a164f604182854d60a7e064ab6e, Client-RequestTS=1727053171346, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:31.780 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74671a164f604182854d60a7e064ab6e, Client-RequestTS=1727053171346, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:31.780 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:31.953 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbaabb6aa2e31866719b96e748cfcf76, Client-RequestTS=1727053171841, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:32.062 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbaabb6aa2e31866719b96e748cfcf76, Client-RequestTS=1727053171841, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:32.171 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbaabb6aa2e31866719b96e748cfcf76, Client-RequestTS=1727053171841, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:32.281 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbaabb6aa2e31866719b96e748cfcf76, Client-RequestTS=1727053171841, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:32.282 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:32.453 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c76ebef20602d1dba05a5b701b2d256, Client-RequestTS=1727053172344, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:32.563 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c76ebef20602d1dba05a5b701b2d256, Client-RequestTS=1727053172344, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:32.673 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c76ebef20602d1dba05a5b701b2d256, Client-RequestTS=1727053172344, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:32.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c76ebef20602d1dba05a5b701b2d256, Client-RequestTS=1727053172344, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:32.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:32.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=862edb140aa3d47d234a84cfa5ae5a86, Client-RequestTS=1727053172847, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:33.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=862edb140aa3d47d234a84cfa5ae5a86, Client-RequestTS=1727053172847, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:33.176 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=862edb140aa3d47d234a84cfa5ae5a86, Client-RequestTS=1727053172847, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:33.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=862edb140aa3d47d234a84cfa5ae5a86, Client-RequestTS=1727053172847, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:33.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:33.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8aa296c2e3410557fbaa66a09487d2d8, Client-RequestTS=1727053173347, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:33.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8aa296c2e3410557fbaa66a09487d2d8, Client-RequestTS=1727053173347, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:33.677 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8aa296c2e3410557fbaa66a09487d2d8, Client-RequestTS=1727053173347, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:33.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8aa296c2e3410557fbaa66a09487d2d8, Client-RequestTS=1727053173347, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:33.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:33.955 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=21ee636a40c0e6626d7ff487ecc6fd96, Client-RequestTS=1727053173848, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:34.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=21ee636a40c0e6626d7ff487ecc6fd96, Client-RequestTS=1727053173848, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:34.175 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=21ee636a40c0e6626d7ff487ecc6fd96, Client-RequestTS=1727053173848, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:34.283 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=21ee636a40c0e6626d7ff487ecc6fd96, Client-RequestTS=1727053173848, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:34.283 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:34.454 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=292d8b7935b3cd22e6897edcdd522111, Client-RequestTS=1727053174345, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:34.563 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=292d8b7935b3cd22e6897edcdd522111, Client-RequestTS=1727053174345, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:34.628 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 423800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@beb8986[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:01.384 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:03.834 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 741800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@281b4498[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:34.676 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=292d8b7935b3cd22e6897edcdd522111, Client-RequestTS=1727053174345, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:34.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=292d8b7935b3cd22e6897edcdd522111, Client-RequestTS=1727053174345, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:34.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:34.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f09d1b70b5ecac7b022dd363f9218b6a, Client-RequestTS=1727053174847, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f09d1b70b5ecac7b022dd363f9218b6a, Client-RequestTS=1727053174847, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.174 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f09d1b70b5ecac7b022dd363f9218b6a, Client-RequestTS=1727053174847, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.281 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f09d1b70b5ecac7b022dd363f9218b6a, Client-RequestTS=1727053174847, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.281 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:35.455 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c78a4ca32b117a1ec70b32253b53d7f6, Client-RequestTS=1727053175344, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.566 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c78a4ca32b117a1ec70b32253b53d7f6, Client-RequestTS=1727053175344, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.676 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c78a4ca32b117a1ec70b32253b53d7f6, Client-RequestTS=1727053175344, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c78a4ca32b117a1ec70b32253b53d7f6, Client-RequestTS=1727053175344, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:35.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0bdc7c0c414d57b88380e1459d9cdc79, Client-RequestTS=1727053175846, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:36.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0bdc7c0c414d57b88380e1459d9cdc79, Client-RequestTS=1727053175846, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:36.176 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0bdc7c0c414d57b88380e1459d9cdc79, Client-RequestTS=1727053175846, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:36.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0bdc7c0c414d57b88380e1459d9cdc79, Client-RequestTS=1727053175846, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:36.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:36.458 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2a54d54d11d19df9f2bb07ca24346d6, Client-RequestTS=1727053176348, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:36.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2a54d54d11d19df9f2bb07ca24346d6, Client-RequestTS=1727053176348, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:36.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2a54d54d11d19df9f2bb07ca24346d6, Client-RequestTS=1727053176348, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:36.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2a54d54d11d19df9f2bb07ca24346d6, Client-RequestTS=1727053176348, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:36.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:36.955 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d6a673dce3ddfe5c013af40cd2f66a30, Client-RequestTS=1727053176847, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:37.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d6a673dce3ddfe5c013af40cd2f66a30, Client-RequestTS=1727053176847, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:37.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d6a673dce3ddfe5c013af40cd2f66a30, Client-RequestTS=1727053176847, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:37.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d6a673dce3ddfe5c013af40cd2f66a30, Client-RequestTS=1727053176847, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:37.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:37.457 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d1de66c43ddff074a086f74303ab710, Client-RequestTS=1727053177348, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:37.566 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d1de66c43ddff074a086f74303ab710, Client-RequestTS=1727053177348, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:37.678 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d1de66c43ddff074a086f74303ab710, Client-RequestTS=1727053177348, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:37.789 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d1de66c43ddff074a086f74303ab710, Client-RequestTS=1727053177348, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:37.789 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:37.836 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 714900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d22687e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:04.414 [http-nio-9202-exec-10] ERROR c.a.n.client.naming - [callServer,447] - [NA] failed to request + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:37.961 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5f190ade425f24bc4a8108667e6fa802, Client-RequestTS=1727053177852, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:38.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5f190ade425f24bc4a8108667e6fa802, Client-RequestTS=1727053177852, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:38.180 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5f190ade425f24bc4a8108667e6fa802, Client-RequestTS=1727053177852, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:38.196 [http-nio-9300-exec-10] ERROR c.a.n.client.naming - [callServer,447] - [NA] failed to request java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) + at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:551) + at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602) at java.base/java.net.Socket.connect(Socket.java:633) at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) + at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534) + at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639) + at java.base/sun.net.www.http.HttpClient.(HttpClient.java:282) + at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387) + at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409) at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) @@ -5894,7 +696,7 @@ java.net.SocketTimeoutException: Connect timed out at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -5902,7 +704,7 @@ java.net.SocketTimeoutException: Connect timed out at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -5915,9 +717,9 @@ java.net.SocketTimeoutException: Connect timed out at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -5954,139 +756,37 @@ java.net.SocketTimeoutException: Connect timed out at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:06.997 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 26 milliseconds, 789901 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@304441e8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:38.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5f190ade425f24bc4a8108667e6fa802, Client-RequestTS=1727053177852, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:38.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:41.152 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 379600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@580bcb91[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:07.438 [http-nio-9202-exec-10] ERROR c.a.n.client.naming - [callServer,447] - [NA] failed to request -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.alibaba.nacos.common.http.client.request.JdkHttpClientRequest.execute(JdkHttpClientRequest.java:114) - at com.alibaba.nacos.common.http.client.NacosRestTemplate.execute(NacosRestTemplate.java:482) - at com.alibaba.nacos.common.http.client.NacosRestTemplate.exchangeForm(NacosRestTemplate.java:427) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.callServer(NamingHttpClientProxy.java:429) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:364) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:335) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:330) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.serverHealthy(NamingHttpClientProxy.java:272) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.serverHealthy(NamingClientProxyDelegate.java:191) - at com.alibaba.nacos.client.naming.NacosNamingService.getServerStatus(NacosNamingService.java:480) - at com.alibaba.cloud.nacos.discovery.actuate.health.NacosDiscoveryHealthIndicator.doHealthCheck(NacosDiscoveryHealthIndicator.java:62) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:07.650 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 64900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@33fd267c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:09.365 [http-nio-9202-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:28:09.475 [http-nio-9202-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:28:09.590 [http-nio-9202-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:28:09.694 [http-nio-9202-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:28:09.694 [http-nio-9202-exec-10] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:42.531 [http-nio-9300-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.640 [http-nio-9300-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.750 [http-nio-9300-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.862 [http-nio-9300-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.862 [http-nio-9300-exec-10] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -6112,7 +812,7 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -6120,264 +820,7 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:11.564 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 315600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d80f082[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:15.612 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 21 milliseconds, 336500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5246445a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:19.754 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 18 milliseconds, 919800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7b8dab10[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:23.984 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 409200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59c80e2c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:34.395 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Connect timed out -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:99) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:48.032 [http-nio-9202-exec-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 430499 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2147ed93[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] -19:28:48.032 [http-nio-9202-exec-4] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 430499 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2147ed93[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 430499 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2147ed93[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 85 common frames omitted -19:29:04.405 [http-nio-9300-exec-5] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 562499 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@103257a5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] -19:29:04.405 [http-nio-9300-exec-5] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 562499 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@103257a5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor82.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor68.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -6429,246 +872,2389 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 562499 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@103257a5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:44.562 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 920800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6bb60d4a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 85 common frames omitted -19:29:06.521 [http-nio-9202-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:06.633 [http-nio-9202-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:06.740 [http-nio-9202-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:06.850 [http-nio-9202-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:06.850 [http-nio-9202-exec-3] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:48.082 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 577600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@489c964c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:03.764 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 719100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@bf914d9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:06.884 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 421100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4900a40a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:08.631 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=481f103e2d355899b864c54fe57f0522, Client-RequestTS=1727053208523, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:08.740 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=481f103e2d355899b864c54fe57f0522, Client-RequestTS=1727053208523, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:08.847 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=481f103e2d355899b864c54fe57f0522, Client-RequestTS=1727053208523, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:08.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=481f103e2d355899b864c54fe57f0522, Client-RequestTS=1727053208523, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:08.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:10.091 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 624600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@302c66c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:13.407 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 778700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@34b7af36[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:16.705 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053214951_117.143.60.138_57914, request = ConfigBatchListenRequest +09:00:16.806 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db0b49befedf82dbee170d336b727c8a, Client-RequestTS=1727053215706, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +09:00:16.915 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db0b49befedf82dbee170d336b727c8a, Client-RequestTS=1727053215706, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:17.024 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db0b49befedf82dbee170d336b727c8a, Client-RequestTS=1727053215706, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:17.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db0b49befedf82dbee170d336b727c8a, Client-RequestTS=1727053215706, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:17.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:17.306 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=899f314ab69988f92dd5e397aef4846a, Client-RequestTS=1727053217197, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:17.416 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=899f314ab69988f92dd5e397aef4846a, Client-RequestTS=1727053217197, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:17.526 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=899f314ab69988f92dd5e397aef4846a, Client-RequestTS=1727053217197, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:17.636 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=899f314ab69988f92dd5e397aef4846a, Client-RequestTS=1727053217197, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:17.636 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:17.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a50e3b38c1881afc6d44e27a2fecf846, Client-RequestTS=1727053217699, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:17.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a50e3b38c1881afc6d44e27a2fecf846, Client-RequestTS=1727053217699, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:18.025 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a50e3b38c1881afc6d44e27a2fecf846, Client-RequestTS=1727053217699, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:18.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a50e3b38c1881afc6d44e27a2fecf846, Client-RequestTS=1727053217699, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:18.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:18.306 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dcbd8e068f290dd5a24462c690c86ebd, Client-RequestTS=1727053218196, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:18.416 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dcbd8e068f290dd5a24462c690c86ebd, Client-RequestTS=1727053218196, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:18.527 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dcbd8e068f290dd5a24462c690c86ebd, Client-RequestTS=1727053218196, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:18.638 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dcbd8e068f290dd5a24462c690c86ebd, Client-RequestTS=1727053218196, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:18.638 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:18.813 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b28d88b5fb22c7e180e2a2be53b791ee, Client-RequestTS=1727053218702, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:18.921 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b28d88b5fb22c7e180e2a2be53b791ee, Client-RequestTS=1727053218702, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:19.031 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b28d88b5fb22c7e180e2a2be53b791ee, Client-RequestTS=1727053218702, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:19.140 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b28d88b5fb22c7e180e2a2be53b791ee, Client-RequestTS=1727053218702, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:19.140 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:19.312 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c079f40aca549f8433e3e51eff3c7f04, Client-RequestTS=1727053219202, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:19.421 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c079f40aca549f8433e3e51eff3c7f04, Client-RequestTS=1727053219202, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:19.529 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c079f40aca549f8433e3e51eff3c7f04, Client-RequestTS=1727053219202, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:19.641 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c079f40aca549f8433e3e51eff3c7f04, Client-RequestTS=1727053219202, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:19.641 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:19.718 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 756200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@621b09d9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:19.812 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=882797120d316913c472ef44d1a0056f, Client-RequestTS=1727053219702, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:19.921 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=882797120d316913c472ef44d1a0056f, Client-RequestTS=1727053219702, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:20.030 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=882797120d316913c472ef44d1a0056f, Client-RequestTS=1727053219702, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:20.138 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=882797120d316913c472ef44d1a0056f, Client-RequestTS=1727053219702, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:20.138 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:20.309 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47b2392fd63955482df8604439e82e76, Client-RequestTS=1727053220201, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:20.418 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47b2392fd63955482df8604439e82e76, Client-RequestTS=1727053220201, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:20.526 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47b2392fd63955482df8604439e82e76, Client-RequestTS=1727053220201, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:20.635 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=47b2392fd63955482df8604439e82e76, Client-RequestTS=1727053220201, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:20.635 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:20.808 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c9e05bee05c7c5f6b85d0af7bb3e1595, Client-RequestTS=1727053220698, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:20.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c9e05bee05c7c5f6b85d0af7bb3e1595, Client-RequestTS=1727053220698, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:21.026 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c9e05bee05c7c5f6b85d0af7bb3e1595, Client-RequestTS=1727053220698, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:21.119 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 210100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@75b8937e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:21.135 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c9e05bee05c7c5f6b85d0af7bb3e1595, Client-RequestTS=1727053220698, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:21.135 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:21.306 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=268d795f7427d1774a0727b49f3ed3fb, Client-RequestTS=1727053221196, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:21.415 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=268d795f7427d1774a0727b49f3ed3fb, Client-RequestTS=1727053221196, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:21.524 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=268d795f7427d1774a0727b49f3ed3fb, Client-RequestTS=1727053221196, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:21.633 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=268d795f7427d1774a0727b49f3ed3fb, Client-RequestTS=1727053221196, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:21.633 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:21.806 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6f5d073ae20bbbe63b834bf23f4afefb, Client-RequestTS=1727053221696, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:21.913 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6f5d073ae20bbbe63b834bf23f4afefb, Client-RequestTS=1727053221696, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:22.022 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6f5d073ae20bbbe63b834bf23f4afefb, Client-RequestTS=1727053221696, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:22.133 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6f5d073ae20bbbe63b834bf23f4afefb, Client-RequestTS=1727053221696, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:22.133 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:22.302 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a3857824b8e79e65fd61fc45191812e, Client-RequestTS=1727053222194, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:22.411 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a3857824b8e79e65fd61fc45191812e, Client-RequestTS=1727053222194, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:22.518 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a3857824b8e79e65fd61fc45191812e, Client-RequestTS=1727053222194, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:22.627 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a3857824b8e79e65fd61fc45191812e, Client-RequestTS=1727053222194, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:22.627 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:22.799 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=29066d1b50d9b13489a0d86be2e1d30e, Client-RequestTS=1727053222689, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:22.844 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 829800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@634e8e72[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:22.906 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=29066d1b50d9b13489a0d86be2e1d30e, Client-RequestTS=1727053222689, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:23.015 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=29066d1b50d9b13489a0d86be2e1d30e, Client-RequestTS=1727053222689, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:23.124 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=29066d1b50d9b13489a0d86be2e1d30e, Client-RequestTS=1727053222689, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:23.124 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:23.296 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d9cdb86926d4f0228b9c1c96742148b3, Client-RequestTS=1727053223186, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:23.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d9cdb86926d4f0228b9c1c96742148b3, Client-RequestTS=1727053223186, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:23.512 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d9cdb86926d4f0228b9c1c96742148b3, Client-RequestTS=1727053223186, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:23.621 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d9cdb86926d4f0228b9c1c96742148b3, Client-RequestTS=1727053223186, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:23.621 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:23.794 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=399c2b88126e2339c892b62d7cb8c7a4, Client-RequestTS=1727053223684, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:23.902 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=399c2b88126e2339c892b62d7cb8c7a4, Client-RequestTS=1727053223684, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:24.012 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=399c2b88126e2339c892b62d7cb8c7a4, Client-RequestTS=1727053223684, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:24.120 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=399c2b88126e2339c892b62d7cb8c7a4, Client-RequestTS=1727053223684, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:24.120 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:24.230 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 98500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1bfffc0f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:24.292 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3ec415d6ee274b2a855818b550fe0f1f, Client-RequestTS=1727053224183, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:24.401 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3ec415d6ee274b2a855818b550fe0f1f, Client-RequestTS=1727053224183, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:24.509 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3ec415d6ee274b2a855818b550fe0f1f, Client-RequestTS=1727053224183, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:24.618 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3ec415d6ee274b2a855818b550fe0f1f, Client-RequestTS=1727053224183, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:24.618 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:24.792 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5ea6ed3c22bc15ebde26bb96bf9afc32, Client-RequestTS=1727053224681, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:24.900 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5ea6ed3c22bc15ebde26bb96bf9afc32, Client-RequestTS=1727053224681, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:25.008 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5ea6ed3c22bc15ebde26bb96bf9afc32, Client-RequestTS=1727053224681, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:25.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5ea6ed3c22bc15ebde26bb96bf9afc32, Client-RequestTS=1727053224681, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:25.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:25.289 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d329f206b1880925042c85bc0e1acc93, Client-RequestTS=1727053225180, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:25.398 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d329f206b1880925042c85bc0e1acc93, Client-RequestTS=1727053225180, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:25.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d329f206b1880925042c85bc0e1acc93, Client-RequestTS=1727053225180, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:25.614 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d329f206b1880925042c85bc0e1acc93, Client-RequestTS=1727053225180, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:25.614 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:25.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a85231e19ecb75ebc8d2a5e8e6c11ef, Client-RequestTS=1727053225677, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:25.895 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a85231e19ecb75ebc8d2a5e8e6c11ef, Client-RequestTS=1727053225677, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.004 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a85231e19ecb75ebc8d2a5e8e6c11ef, Client-RequestTS=1727053225677, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.050 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 122600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@22d64c64[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:26.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a85231e19ecb75ebc8d2a5e8e6c11ef, Client-RequestTS=1727053225677, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:26.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=79253ebe83db91d17e160c30d6759801, Client-RequestTS=1727053226174, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=79253ebe83db91d17e160c30d6759801, Client-RequestTS=1727053226174, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=79253ebe83db91d17e160c30d6759801, Client-RequestTS=1727053226174, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.616 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=79253ebe83db91d17e160c30d6759801, Client-RequestTS=1727053226174, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.616 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:26.789 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=25cb569fd6f4e673a33d64154d7830cf, Client-RequestTS=1727053226678, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.898 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=25cb569fd6f4e673a33d64154d7830cf, Client-RequestTS=1727053226678, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:27.007 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=25cb569fd6f4e673a33d64154d7830cf, Client-RequestTS=1727053226678, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:27.116 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=25cb569fd6f4e673a33d64154d7830cf, Client-RequestTS=1727053226678, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:27.116 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:27.290 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae2d5faeaf0953838259e8c2391fd412, Client-RequestTS=1727053227179, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:27.397 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae2d5faeaf0953838259e8c2391fd412, Client-RequestTS=1727053227179, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:27.442 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 966400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1b9a68ea[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:27.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae2d5faeaf0953838259e8c2391fd412, Client-RequestTS=1727053227179, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:27.615 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae2d5faeaf0953838259e8c2391fd412, Client-RequestTS=1727053227179, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:27.615 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:27.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67ee31ae0ad814f4da7afcbfe42c7665, Client-RequestTS=1727053227677, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:27.895 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67ee31ae0ad814f4da7afcbfe42c7665, Client-RequestTS=1727053227677, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:28.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67ee31ae0ad814f4da7afcbfe42c7665, Client-RequestTS=1727053227677, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:28.112 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67ee31ae0ad814f4da7afcbfe42c7665, Client-RequestTS=1727053227677, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:28.112 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:28.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3b393150e4c2a3b8530f37324df6d50, Client-RequestTS=1727053228176, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:28.397 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3b393150e4c2a3b8530f37324df6d50, Client-RequestTS=1727053228176, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:28.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3b393150e4c2a3b8530f37324df6d50, Client-RequestTS=1727053228176, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:28.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3b393150e4c2a3b8530f37324df6d50, Client-RequestTS=1727053228176, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:28.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:28.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=13adbc9126a081f081575bf765ef366c, Client-RequestTS=1727053228675, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:28.895 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=13adbc9126a081f081575bf765ef366c, Client-RequestTS=1727053228675, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:29.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=13adbc9126a081f081575bf765ef366c, Client-RequestTS=1727053228675, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:29.112 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=13adbc9126a081f081575bf765ef366c, Client-RequestTS=1727053228675, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:29.112 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:29.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7f3bce16e5f1fb2f0e18f60ad528146, Client-RequestTS=1727053229176, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:29.379 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 823900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@31d9e46d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:29.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7f3bce16e5f1fb2f0e18f60ad528146, Client-RequestTS=1727053229176, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:29.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7f3bce16e5f1fb2f0e18f60ad528146, Client-RequestTS=1727053229176, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:29.615 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7f3bce16e5f1fb2f0e18f60ad528146, Client-RequestTS=1727053229176, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:29.615 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:29.788 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0a6c49acd9bf5863423954f12de48467, Client-RequestTS=1727053229679, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:29.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0a6c49acd9bf5863423954f12de48467, Client-RequestTS=1727053229679, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:30.005 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0a6c49acd9bf5863423954f12de48467, Client-RequestTS=1727053229679, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:30.114 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0a6c49acd9bf5863423954f12de48467, Client-RequestTS=1727053229679, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:30.114 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:30.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6b7636342d76792596d596a212b86d86, Client-RequestTS=1727053230176, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:30.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6b7636342d76792596d596a212b86d86, Client-RequestTS=1727053230176, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:30.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6b7636342d76792596d596a212b86d86, Client-RequestTS=1727053230176, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:30.614 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6b7636342d76792596d596a212b86d86, Client-RequestTS=1727053230176, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:30.614 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:30.769 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 181000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@f18ba92[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:30.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5c2cb75c685e7935e2f909f2df2cfe8, Client-RequestTS=1727053230677, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:30.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5c2cb75c685e7935e2f909f2df2cfe8, Client-RequestTS=1727053230677, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5c2cb75c685e7935e2f909f2df2cfe8, Client-RequestTS=1727053230677, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.112 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5c2cb75c685e7935e2f909f2df2cfe8, Client-RequestTS=1727053230677, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.112 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:31.284 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f39333362538e61e71ac95727d58f48, Client-RequestTS=1727053231174, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f39333362538e61e71ac95727d58f48, Client-RequestTS=1727053231174, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.503 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f39333362538e61e71ac95727d58f48, Client-RequestTS=1727053231174, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f39333362538e61e71ac95727d58f48, Client-RequestTS=1727053231174, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:31.781 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4425c3d49073ca91ef8ff76753ba9a30, Client-RequestTS=1727053231673, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.892 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4425c3d49073ca91ef8ff76753ba9a30, Client-RequestTS=1727053231673, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:31.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4425c3d49073ca91ef8ff76753ba9a30, Client-RequestTS=1727053231673, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:32.109 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4425c3d49073ca91ef8ff76753ba9a30, Client-RequestTS=1727053231673, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:32.109 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:32.282 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d0082eda21f26960a7b4e3c857560a, Client-RequestTS=1727053232171, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:32.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d0082eda21f26960a7b4e3c857560a, Client-RequestTS=1727053232171, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:32.497 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d0082eda21f26960a7b4e3c857560a, Client-RequestTS=1727053232171, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:32.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d0082eda21f26960a7b4e3c857560a, Client-RequestTS=1727053232171, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:32.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:32.780 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42e40b9313bfe5f04c865bfcd8209d38, Client-RequestTS=1727053232668, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:32.796 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 478100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3dfe118c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:32.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42e40b9313bfe5f04c865bfcd8209d38, Client-RequestTS=1727053232668, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:32.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42e40b9313bfe5f04c865bfcd8209d38, Client-RequestTS=1727053232668, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:33.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42e40b9313bfe5f04c865bfcd8209d38, Client-RequestTS=1727053232668, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:33.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:33.280 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ef592e145c4164f8011ca052b355ee8, Client-RequestTS=1727053233171, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:33.391 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ef592e145c4164f8011ca052b355ee8, Client-RequestTS=1727053233171, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:33.499 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ef592e145c4164f8011ca052b355ee8, Client-RequestTS=1727053233171, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:33.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ef592e145c4164f8011ca052b355ee8, Client-RequestTS=1727053233171, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:33.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:33.779 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=441fb2a02a5a8696f0ba39435843b4c9, Client-RequestTS=1727053233671, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:33.888 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=441fb2a02a5a8696f0ba39435843b4c9, Client-RequestTS=1727053233671, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:33.998 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=441fb2a02a5a8696f0ba39435843b4c9, Client-RequestTS=1727053233671, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:34.106 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=441fb2a02a5a8696f0ba39435843b4c9, Client-RequestTS=1727053233671, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:34.106 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:34.184 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 275400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2a93fd7d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:34.275 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e297fe23cc4f6ee6ef9ac4403e4af27b, Client-RequestTS=1727053234168, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:34.385 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e297fe23cc4f6ee6ef9ac4403e4af27b, Client-RequestTS=1727053234168, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:34.494 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e297fe23cc4f6ee6ef9ac4403e4af27b, Client-RequestTS=1727053234168, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:34.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e297fe23cc4f6ee6ef9ac4403e4af27b, Client-RequestTS=1727053234168, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:34.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:34.777 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0b568ba5b99bb70579bd7c478180cbe0, Client-RequestTS=1727053234668, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:34.888 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0b568ba5b99bb70579bd7c478180cbe0, Client-RequestTS=1727053234668, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:34.996 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0b568ba5b99bb70579bd7c478180cbe0, Client-RequestTS=1727053234668, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:35.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0b568ba5b99bb70579bd7c478180cbe0, Client-RequestTS=1727053234668, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:35.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:35.276 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f2540843f9fed573e3429e3c6c6c0f5, Client-RequestTS=1727053235168, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:35.385 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f2540843f9fed573e3429e3c6c6c0f5, Client-RequestTS=1727053235168, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:35.492 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f2540843f9fed573e3429e3c6c6c0f5, Client-RequestTS=1727053235168, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:35.600 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f2540843f9fed573e3429e3c6c6c0f5, Client-RequestTS=1727053235168, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:35.600 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:35.774 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f0700b91b463ae1e47c4ae1bfad0ac82, Client-RequestTS=1727053235663, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:35.881 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f0700b91b463ae1e47c4ae1bfad0ac82, Client-RequestTS=1727053235663, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:35.993 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f0700b91b463ae1e47c4ae1bfad0ac82, Client-RequestTS=1727053235663, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:36.105 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f0700b91b463ae1e47c4ae1bfad0ac82, Client-RequestTS=1727053235663, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:36.105 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:36.277 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=175047afbc76c75efa3d25ed53a19ca5, Client-RequestTS=1727053236167, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:36.309 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 238900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7d293e57[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:36.387 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=175047afbc76c75efa3d25ed53a19ca5, Client-RequestTS=1727053236167, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:36.495 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=175047afbc76c75efa3d25ed53a19ca5, Client-RequestTS=1727053236167, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:36.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=175047afbc76c75efa3d25ed53a19ca5, Client-RequestTS=1727053236167, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:36.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:36.779 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7267d27d4b7e55f301fd22c066cb73e2, Client-RequestTS=1727053236668, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:36.888 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7267d27d4b7e55f301fd22c066cb73e2, Client-RequestTS=1727053236668, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:36.996 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7267d27d4b7e55f301fd22c066cb73e2, Client-RequestTS=1727053236668, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:37.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7267d27d4b7e55f301fd22c066cb73e2, Client-RequestTS=1727053236668, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:37.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:37.279 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a3ff49b53657242a212d49c31ef01fc3, Client-RequestTS=1727053237170, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:37.388 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a3ff49b53657242a212d49c31ef01fc3, Client-RequestTS=1727053237170, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:37.499 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a3ff49b53657242a212d49c31ef01fc3, Client-RequestTS=1727053237170, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:37.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a3ff49b53657242a212d49c31ef01fc3, Client-RequestTS=1727053237170, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:37.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:37.783 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2a490c073d4182d2c1a3281270163bc, Client-RequestTS=1727053237672, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:37.892 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2a490c073d4182d2c1a3281270163bc, Client-RequestTS=1727053237672, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.001 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2a490c073d4182d2c1a3281270163bc, Client-RequestTS=1727053237672, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2a490c073d4182d2c1a3281270163bc, Client-RequestTS=1727053237672, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:38.281 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=89d823d227a38099bf4b0e66e01b9bfe, Client-RequestTS=1727053238170, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=89d823d227a38099bf4b0e66e01b9bfe, Client-RequestTS=1727053238170, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.500 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=89d823d227a38099bf4b0e66e01b9bfe, Client-RequestTS=1727053238170, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=89d823d227a38099bf4b0e66e01b9bfe, Client-RequestTS=1727053238170, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:38.779 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0d112a3fde44999b31db650816909f34, Client-RequestTS=1727053238672, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.890 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0d112a3fde44999b31db650816909f34, Client-RequestTS=1727053238672, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:38.998 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0d112a3fde44999b31db650816909f34, Client-RequestTS=1727053238672, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:39.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0d112a3fde44999b31db650816909f34, Client-RequestTS=1727053238672, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:39.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:39.280 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3022ba07bb893c01ac423179273cc433, Client-RequestTS=1727053239170, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:39.387 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3022ba07bb893c01ac423179273cc433, Client-RequestTS=1727053239170, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:39.498 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3022ba07bb893c01ac423179273cc433, Client-RequestTS=1727053239170, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:39.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3022ba07bb893c01ac423179273cc433, Client-RequestTS=1727053239170, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:39.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:39.781 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=809acdeb09db24ac7e42697b47ec770a, Client-RequestTS=1727053239672, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:39.890 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=809acdeb09db24ac7e42697b47ec770a, Client-RequestTS=1727053239672, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:39.922 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 577300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@575e6374[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:40.000 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=809acdeb09db24ac7e42697b47ec770a, Client-RequestTS=1727053239672, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:40.111 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=809acdeb09db24ac7e42697b47ec770a, Client-RequestTS=1727053239672, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:40.111 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:40.283 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=28562c46603c6330ea02627e6b3a9677, Client-RequestTS=1727053240173, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:40.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=28562c46603c6330ea02627e6b3a9677, Client-RequestTS=1727053240173, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:40.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=28562c46603c6330ea02627e6b3a9677, Client-RequestTS=1727053240173, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:40.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=28562c46603c6330ea02627e6b3a9677, Client-RequestTS=1727053240173, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:40.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:40.782 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=11cc5332dce6c291cbb1f3b9dc6d0e3c, Client-RequestTS=1727053240673, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:40.892 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=11cc5332dce6c291cbb1f3b9dc6d0e3c, Client-RequestTS=1727053240673, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.001 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=11cc5332dce6c291cbb1f3b9dc6d0e3c, Client-RequestTS=1727053240673, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=11cc5332dce6c291cbb1f3b9dc6d0e3c, Client-RequestTS=1727053240673, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:41.124 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 659600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7df697ec[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +09:00:41.124 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 659600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7df697ec[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:07.559 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:09.185 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 648200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30c87b8d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 659600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7df697ec[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 14 common frames omitted +09:00:41.273 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74a12b352304225047258124790814e6, Client-RequestTS=1727053241171, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.388 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74a12b352304225047258124790814e6, Client-RequestTS=1727053241171, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.498 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74a12b352304225047258124790814e6, Client-RequestTS=1727053241171, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.607 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74a12b352304225047258124790814e6, Client-RequestTS=1727053241171, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.607 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:41.777 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f21ae23c0981a7910cc176415501b5f9, Client-RequestTS=1727053241670, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.886 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f21ae23c0981a7910cc176415501b5f9, Client-RequestTS=1727053241670, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:41.996 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f21ae23c0981a7910cc176415501b5f9, Client-RequestTS=1727053241670, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:42.106 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f21ae23c0981a7910cc176415501b5f9, Client-RequestTS=1727053241670, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:42.106 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:42.279 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=294ccce30aea0f02aed4a4fcb64bde85, Client-RequestTS=1727053242168, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:42.387 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=294ccce30aea0f02aed4a4fcb64bde85, Client-RequestTS=1727053242168, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:42.495 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=294ccce30aea0f02aed4a4fcb64bde85, Client-RequestTS=1727053242168, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:42.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=294ccce30aea0f02aed4a4fcb64bde85, Client-RequestTS=1727053242168, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:42.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:42.779 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a1c231324c1243ebb69e5bbf1f8bad2, Client-RequestTS=1727053242669, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:42.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a1c231324c1243ebb69e5bbf1f8bad2, Client-RequestTS=1727053242669, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:42.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a1c231324c1243ebb69e5bbf1f8bad2, Client-RequestTS=1727053242669, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:43.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a1c231324c1243ebb69e5bbf1f8bad2, Client-RequestTS=1727053242669, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:43.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:43.279 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=edfb549d1ebb7340cd04076b9d5b73ec, Client-RequestTS=1727053243170, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:43.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=edfb549d1ebb7340cd04076b9d5b73ec, Client-RequestTS=1727053243170, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:43.501 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=edfb549d1ebb7340cd04076b9d5b73ec, Client-RequestTS=1727053243170, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:43.611 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=edfb549d1ebb7340cd04076b9d5b73ec, Client-RequestTS=1727053243170, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:43.611 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:43.642 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 425400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7cbb4d42[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:10.001 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 180100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@68752f51[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:43.780 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d32ac692b9ff00ca97b01fe58d930480, Client-RequestTS=1727053243673, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:43.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d32ac692b9ff00ca97b01fe58d930480, Client-RequestTS=1727053243673, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:43.997 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d32ac692b9ff00ca97b01fe58d930480, Client-RequestTS=1727053243673, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:44.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d32ac692b9ff00ca97b01fe58d930480, Client-RequestTS=1727053243673, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:44.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:44.278 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=753058412fa88dec7442eed1c57b5344, Client-RequestTS=1727053244169, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:44.386 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=753058412fa88dec7442eed1c57b5344, Client-RequestTS=1727053244169, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:44.496 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=753058412fa88dec7442eed1c57b5344, Client-RequestTS=1727053244169, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:44.605 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=753058412fa88dec7442eed1c57b5344, Client-RequestTS=1727053244169, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:44.605 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:44.775 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d0039b5d15e2df5cd6b0aab0a560cabb, Client-RequestTS=1727053244667, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:44.884 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d0039b5d15e2df5cd6b0aab0a560cabb, Client-RequestTS=1727053244667, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:44.995 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d0039b5d15e2df5cd6b0aab0a560cabb, Client-RequestTS=1727053244667, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:45.105 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d0039b5d15e2df5cd6b0aab0a560cabb, Client-RequestTS=1727053244667, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:45.105 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:45.277 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58156d3cc09dc3a468774ea1dc2ea6b0, Client-RequestTS=1727053245167, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:45.387 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58156d3cc09dc3a468774ea1dc2ea6b0, Client-RequestTS=1727053245167, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:45.497 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58156d3cc09dc3a468774ea1dc2ea6b0, Client-RequestTS=1727053245167, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:45.605 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58156d3cc09dc3a468774ea1dc2ea6b0, Client-RequestTS=1727053245167, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:45.605 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:45.778 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a03cd431ad54269d68d2d8fd995f946, Client-RequestTS=1727053245669, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:45.886 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a03cd431ad54269d68d2d8fd995f946, Client-RequestTS=1727053245669, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:45.995 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a03cd431ad54269d68d2d8fd995f946, Client-RequestTS=1727053245669, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:46.106 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a03cd431ad54269d68d2d8fd995f946, Client-RequestTS=1727053245669, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:46.106 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:46.276 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcf428effa2934160d2a296f3e737f4e, Client-RequestTS=1727053246167, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:46.386 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcf428effa2934160d2a296f3e737f4e, Client-RequestTS=1727053246167, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:46.494 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcf428effa2934160d2a296f3e737f4e, Client-RequestTS=1727053246167, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:46.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcf428effa2934160d2a296f3e737f4e, Client-RequestTS=1727053246167, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:46.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:46.777 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=766e63c9f1699bf8a35fc41d56cabe4e, Client-RequestTS=1727053246667, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:46.888 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=766e63c9f1699bf8a35fc41d56cabe4e, Client-RequestTS=1727053246667, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:46.994 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=766e63c9f1699bf8a35fc41d56cabe4e, Client-RequestTS=1727053246667, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.103 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=766e63c9f1699bf8a35fc41d56cabe4e, Client-RequestTS=1727053246667, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.103 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:47.275 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5584855932dd9dd460bbf0e9d620230a, Client-RequestTS=1727053247167, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.384 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5584855932dd9dd460bbf0e9d620230a, Client-RequestTS=1727053247167, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.461 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 589800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@80f8589[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:11.155 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 435000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@15a6afd5[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:47.492 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5584855932dd9dd460bbf0e9d620230a, Client-RequestTS=1727053247167, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.602 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5584855932dd9dd460bbf0e9d620230a, Client-RequestTS=1727053247167, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.602 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:47.773 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=327b1c348ebf65f24f1f1d9865ac0b72, Client-RequestTS=1727053247665, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.882 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=327b1c348ebf65f24f1f1d9865ac0b72, Client-RequestTS=1727053247665, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.991 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=327b1c348ebf65f24f1f1d9865ac0b72, Client-RequestTS=1727053247665, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.101 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=327b1c348ebf65f24f1f1d9865ac0b72, Client-RequestTS=1727053247665, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.101 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:48.271 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99e9c0320af7645f8f502f6c7005a3a7, Client-RequestTS=1727053248163, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.379 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99e9c0320af7645f8f502f6c7005a3a7, Client-RequestTS=1727053248163, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.489 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99e9c0320af7645f8f502f6c7005a3a7, Client-RequestTS=1727053248163, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.597 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99e9c0320af7645f8f502f6c7005a3a7, Client-RequestTS=1727053248163, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.597 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:48.771 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a25f5c31440e315080842e1309376ea, Client-RequestTS=1727053248660, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.880 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a25f5c31440e315080842e1309376ea, Client-RequestTS=1727053248660, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.990 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a25f5c31440e315080842e1309376ea, Client-RequestTS=1727053248660, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.098 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a25f5c31440e315080842e1309376ea, Client-RequestTS=1727053248660, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.098 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:49.269 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d0b49faed4214c7815cfec680e2ce5c, Client-RequestTS=1727053249159, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.377 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d0b49faed4214c7815cfec680e2ce5c, Client-RequestTS=1727053249159, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.487 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d0b49faed4214c7815cfec680e2ce5c, Client-RequestTS=1727053249159, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d0b49faed4214c7815cfec680e2ce5c, Client-RequestTS=1727053249159, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:49.766 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76cc17a6ea35c8788e92ed1126f31193, Client-RequestTS=1727053249657, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.875 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76cc17a6ea35c8788e92ed1126f31193, Client-RequestTS=1727053249657, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.984 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76cc17a6ea35c8788e92ed1126f31193, Client-RequestTS=1727053249657, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.095 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76cc17a6ea35c8788e92ed1126f31193, Client-RequestTS=1727053249657, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.095 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:50.266 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86a181ecbe0de8c70ad7409d3226b3e, Client-RequestTS=1727053250158, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.376 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86a181ecbe0de8c70ad7409d3226b3e, Client-RequestTS=1727053250158, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.485 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86a181ecbe0de8c70ad7409d3226b3e, Client-RequestTS=1727053250158, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.594 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86a181ecbe0de8c70ad7409d3226b3e, Client-RequestTS=1727053250158, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.594 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:50.765 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=323eee03bbdc499724bf551bd003891b, Client-RequestTS=1727053250655, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.874 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=323eee03bbdc499724bf551bd003891b, Client-RequestTS=1727053250655, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.982 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=323eee03bbdc499724bf551bd003891b, Client-RequestTS=1727053250655, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.093 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=323eee03bbdc499724bf551bd003891b, Client-RequestTS=1727053250655, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.093 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:51.264 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=379ef35652cde2b03ab7bfbc4639e1e3, Client-RequestTS=1727053251155, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.373 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=379ef35652cde2b03ab7bfbc4639e1e3, Client-RequestTS=1727053251155, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.373 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 11300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@79672bea[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:13.125 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 708100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@65ada99d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:51.483 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=379ef35652cde2b03ab7bfbc4639e1e3, Client-RequestTS=1727053251155, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.591 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=379ef35652cde2b03ab7bfbc4639e1e3, Client-RequestTS=1727053251155, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.591 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:51.763 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4be84a635bf247670651b791aa5c3df3, Client-RequestTS=1727053251652, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.870 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4be84a635bf247670651b791aa5c3df3, Client-RequestTS=1727053251652, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.979 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4be84a635bf247670651b791aa5c3df3, Client-RequestTS=1727053251652, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4be84a635bf247670651b791aa5c3df3, Client-RequestTS=1727053251652, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:52.260 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f43a2f4b92b91fc50f02a583aa705ee, Client-RequestTS=1727053252151, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.372 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f43a2f4b92b91fc50f02a583aa705ee, Client-RequestTS=1727053252151, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.480 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f43a2f4b92b91fc50f02a583aa705ee, Client-RequestTS=1727053252151, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f43a2f4b92b91fc50f02a583aa705ee, Client-RequestTS=1727053252151, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:52.762 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa1e6bbaac6b33cf775e6dc8d2cceb2c, Client-RequestTS=1727053252651, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.869 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa1e6bbaac6b33cf775e6dc8d2cceb2c, Client-RequestTS=1727053252651, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.978 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa1e6bbaac6b33cf775e6dc8d2cceb2c, Client-RequestTS=1727053252651, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.086 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa1e6bbaac6b33cf775e6dc8d2cceb2c, Client-RequestTS=1727053252651, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.086 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:53.259 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad0d064a020fb2e57b46e34d353c96e5, Client-RequestTS=1727053253150, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.367 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad0d064a020fb2e57b46e34d353c96e5, Client-RequestTS=1727053253150, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.476 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad0d064a020fb2e57b46e34d353c96e5, Client-RequestTS=1727053253150, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.584 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad0d064a020fb2e57b46e34d353c96e5, Client-RequestTS=1727053253150, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.584 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:53.757 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a299713f46c57703a726be3fbb853416, Client-RequestTS=1727053253648, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.866 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a299713f46c57703a726be3fbb853416, Client-RequestTS=1727053253648, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.974 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a299713f46c57703a726be3fbb853416, Client-RequestTS=1727053253648, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a299713f46c57703a726be3fbb853416, Client-RequestTS=1727053253648, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:54.256 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=978a38bd347dcc586dfe4ef5c5aaff81, Client-RequestTS=1727053254146, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.366 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=978a38bd347dcc586dfe4ef5c5aaff81, Client-RequestTS=1727053254146, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.475 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=978a38bd347dcc586dfe4ef5c5aaff81, Client-RequestTS=1727053254146, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=978a38bd347dcc586dfe4ef5c5aaff81, Client-RequestTS=1727053254146, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:54.751 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b2fa2e21a819176a4eddb931b961b34, Client-RequestTS=1727053254644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.860 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b2fa2e21a819176a4eddb931b961b34, Client-RequestTS=1727053254644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.970 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b2fa2e21a819176a4eddb931b961b34, Client-RequestTS=1727053254644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.081 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b2fa2e21a819176a4eddb931b961b34, Client-RequestTS=1727053254644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.081 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:55.251 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f62af2a14d88b69eeaeb863fe2593256, Client-RequestTS=1727053255143, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.359 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f62af2a14d88b69eeaeb863fe2593256, Client-RequestTS=1727053255143, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.390 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 116900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@d1a428b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:14.279 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 64300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1ca41f9e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:55.470 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f62af2a14d88b69eeaeb863fe2593256, Client-RequestTS=1727053255143, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.579 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f62af2a14d88b69eeaeb863fe2593256, Client-RequestTS=1727053255143, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.579 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:55.749 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7cbe0bbededeedffe32b619c2024d10, Client-RequestTS=1727053255640, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.857 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7cbe0bbededeedffe32b619c2024d10, Client-RequestTS=1727053255640, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.966 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7cbe0bbededeedffe32b619c2024d10, Client-RequestTS=1727053255640, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7cbe0bbededeedffe32b619c2024d10, Client-RequestTS=1727053255640, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:56.236 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 705700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@402b0c93[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:16.355 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 451300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@38220b50[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:56.251 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=81edf4bb8aa33d5513c8dad794ebd61c, Client-RequestTS=1727053256142, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.362 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=81edf4bb8aa33d5513c8dad794ebd61c, Client-RequestTS=1727053256142, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.472 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=81edf4bb8aa33d5513c8dad794ebd61c, Client-RequestTS=1727053256142, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=81edf4bb8aa33d5513c8dad794ebd61c, Client-RequestTS=1727053256142, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:56.752 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50a0af4b7a2bb3517bf75340df63fb77, Client-RequestTS=1727053256644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.862 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50a0af4b7a2bb3517bf75340df63fb77, Client-RequestTS=1727053256644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.974 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50a0af4b7a2bb3517bf75340df63fb77, Client-RequestTS=1727053256644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.082 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50a0af4b7a2bb3517bf75340df63fb77, Client-RequestTS=1727053256644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.082 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:57.253 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec703fb4c7affa03fa046527934ef3f6, Client-RequestTS=1727053257145, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.364 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec703fb4c7affa03fa046527934ef3f6, Client-RequestTS=1727053257145, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.472 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec703fb4c7affa03fa046527934ef3f6, Client-RequestTS=1727053257145, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec703fb4c7affa03fa046527934ef3f6, Client-RequestTS=1727053257145, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:57.754 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e424e7b5b428af03b60f0a3a718b1c5a, Client-RequestTS=1727053257644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.865 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e424e7b5b428af03b60f0a3a718b1c5a, Client-RequestTS=1727053257644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.973 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e424e7b5b428af03b60f0a3a718b1c5a, Client-RequestTS=1727053257644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e424e7b5b428af03b60f0a3a718b1c5a, Client-RequestTS=1727053257644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:58.254 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf00319e2b31ac87222ee68fc8ed4c7, Client-RequestTS=1727053258145, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.362 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf00319e2b31ac87222ee68fc8ed4c7, Client-RequestTS=1727053258145, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.473 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf00319e2b31ac87222ee68fc8ed4c7, Client-RequestTS=1727053258145, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf00319e2b31ac87222ee68fc8ed4c7, Client-RequestTS=1727053258145, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:58.753 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c09e0e1fa1945342eb20396472e340, Client-RequestTS=1727053258645, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.862 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c09e0e1fa1945342eb20396472e340, Client-RequestTS=1727053258645, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.971 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c09e0e1fa1945342eb20396472e340, Client-RequestTS=1727053258645, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c09e0e1fa1945342eb20396472e340, Client-RequestTS=1727053258645, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:59.250 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cefd778475e66af93770c9e1c262948c, Client-RequestTS=1727053259141, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.359 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cefd778475e66af93770c9e1c262948c, Client-RequestTS=1727053259141, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.359 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 826400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7ebe029[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:41.718 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:14.993 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:24.402 [http-nio-9300-exec-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 559500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@42f9b69e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] -19:30:24.402 [http-nio-9300-exec-9] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 559500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@42f9b69e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:59.468 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cefd778475e66af93770c9e1c262948c, Client-RequestTS=1727053259141, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.516 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 140200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6138014f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:59.578 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cefd778475e66af93770c9e1c262948c, Client-RequestTS=1727053259141, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.578 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:59.750 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9577889c46d7c3a257b40acbcb04a3b, Client-RequestTS=1727053259642, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.859 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9577889c46d7c3a257b40acbcb04a3b, Client-RequestTS=1727053259642, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.967 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9577889c46d7c3a257b40acbcb04a3b, Client-RequestTS=1727053259642, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9577889c46d7c3a257b40acbcb04a3b, Client-RequestTS=1727053259642, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:00.249 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc09f19101197287742371d1372abab5, Client-RequestTS=1727053260139, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.357 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc09f19101197287742371d1372abab5, Client-RequestTS=1727053260139, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.468 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc09f19101197287742371d1372abab5, Client-RequestTS=1727053260139, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.575 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc09f19101197287742371d1372abab5, Client-RequestTS=1727053260139, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.575 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:00.747 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4c7889d313d94e067fc37756de119c7, Client-RequestTS=1727053260638, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.857 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4c7889d313d94e067fc37756de119c7, Client-RequestTS=1727053260638, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.966 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4c7889d313d94e067fc37756de119c7, Client-RequestTS=1727053260638, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4c7889d313d94e067fc37756de119c7, Client-RequestTS=1727053260638, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:01.247 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=136d49f60a55dc1e6855f7d5ae702ec8, Client-RequestTS=1727053261139, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.356 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=136d49f60a55dc1e6855f7d5ae702ec8, Client-RequestTS=1727053261139, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.466 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=136d49f60a55dc1e6855f7d5ae702ec8, Client-RequestTS=1727053261139, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.574 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=136d49f60a55dc1e6855f7d5ae702ec8, Client-RequestTS=1727053261139, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.574 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:01.747 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87da9cc8199061e482cdb6a404c57ba5, Client-RequestTS=1727053261637, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.855 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87da9cc8199061e482cdb6a404c57ba5, Client-RequestTS=1727053261637, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.962 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87da9cc8199061e482cdb6a404c57ba5, Client-RequestTS=1727053261637, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.072 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87da9cc8199061e482cdb6a404c57ba5, Client-RequestTS=1727053261637, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.072 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.243 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c02e31adf8862a890372555bb75872d, Client-RequestTS=1727053262134, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.355 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c02e31adf8862a890372555bb75872d, Client-RequestTS=1727053262134, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.463 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c02e31adf8862a890372555bb75872d, Client-RequestTS=1727053262134, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.572 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c02e31adf8862a890372555bb75872d, Client-RequestTS=1727053262134, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.572 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 664200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@361e36d7[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.572 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.742 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=370030ff50d4e8f9b9dadb0c90dd4fdc, Client-RequestTS=1727053262635, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.851 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=370030ff50d4e8f9b9dadb0c90dd4fdc, Client-RequestTS=1727053262635, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.960 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=370030ff50d4e8f9b9dadb0c90dd4fdc, Client-RequestTS=1727053262635, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=370030ff50d4e8f9b9dadb0c90dd4fdc, Client-RequestTS=1727053262635, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:03.243 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7ba36a7c9d946d3c5bf75d1b885d5f6, Client-RequestTS=1727053263134, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.355 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7ba36a7c9d946d3c5bf75d1b885d5f6, Client-RequestTS=1727053263134, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.462 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7ba36a7c9d946d3c5bf75d1b885d5f6, Client-RequestTS=1727053263134, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.571 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7ba36a7c9d946d3c5bf75d1b885d5f6, Client-RequestTS=1727053263134, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.571 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:03.744 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f11c704d1d7c40c3e6f41deee4894af4, Client-RequestTS=1727053263635, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.744 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 371500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a5a9005[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:03.854 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f11c704d1d7c40c3e6f41deee4894af4, Client-RequestTS=1727053263635, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.963 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f11c704d1d7c40c3e6f41deee4894af4, Client-RequestTS=1727053263635, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f11c704d1d7c40c3e6f41deee4894af4, Client-RequestTS=1727053263635, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:04.244 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a26c5386aa586868eb266a183579c5e, Client-RequestTS=1727053264133, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.351 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a26c5386aa586868eb266a183579c5e, Client-RequestTS=1727053264133, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a26c5386aa586868eb266a183579c5e, Client-RequestTS=1727053264133, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a26c5386aa586868eb266a183579c5e, Client-RequestTS=1727053264133, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:04.740 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45fa72da8b9e34d29fb7f34a75756922, Client-RequestTS=1727053264631, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.849 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45fa72da8b9e34d29fb7f34a75756922, Client-RequestTS=1727053264631, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45fa72da8b9e34d29fb7f34a75756922, Client-RequestTS=1727053264631, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45fa72da8b9e34d29fb7f34a75756922, Client-RequestTS=1727053264631, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.240 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=71d6e3bee8f5bb33cce896a1f1bd351e, Client-RequestTS=1727053265130, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.349 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=71d6e3bee8f5bb33cce896a1f1bd351e, Client-RequestTS=1727053265130, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.457 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=71d6e3bee8f5bb33cce896a1f1bd351e, Client-RequestTS=1727053265130, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=71d6e3bee8f5bb33cce896a1f1bd351e, Client-RequestTS=1727053265130, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.739 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c897acffa4ebcb6f15d16c0d1d6e714, Client-RequestTS=1727053265630, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.847 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c897acffa4ebcb6f15d16c0d1d6e714, Client-RequestTS=1727053265630, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.894 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 489300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d4e365f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c897acffa4ebcb6f15d16c0d1d6e714, Client-RequestTS=1727053265630, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c897acffa4ebcb6f15d16c0d1d6e714, Client-RequestTS=1727053265630, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:06.238 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=073075eddf3b6adfc3bdcb85d7a4986d, Client-RequestTS=1727053266127, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.349 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=073075eddf3b6adfc3bdcb85d7a4986d, Client-RequestTS=1727053266127, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.458 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=073075eddf3b6adfc3bdcb85d7a4986d, Client-RequestTS=1727053266127, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=073075eddf3b6adfc3bdcb85d7a4986d, Client-RequestTS=1727053266127, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:06.740 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56ce3a8bbcbbcb17ff683f95bc895f67, Client-RequestTS=1727053266630, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.850 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56ce3a8bbcbbcb17ff683f95bc895f67, Client-RequestTS=1727053266630, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56ce3a8bbcbbcb17ff683f95bc895f67, Client-RequestTS=1727053266630, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56ce3a8bbcbbcb17ff683f95bc895f67, Client-RequestTS=1727053266630, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:07.239 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4bb4b67ec5782a301e9a0521bc2cd877, Client-RequestTS=1727053267130, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.349 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4bb4b67ec5782a301e9a0521bc2cd877, Client-RequestTS=1727053267130, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.459 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4bb4b67ec5782a301e9a0521bc2cd877, Client-RequestTS=1727053267130, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4bb4b67ec5782a301e9a0521bc2cd877, Client-RequestTS=1727053267130, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:07.742 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=387a4c64ea2e9829ab9909962801ae44, Client-RequestTS=1727053267633, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.851 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=387a4c64ea2e9829ab9909962801ae44, Client-RequestTS=1727053267633, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.960 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=387a4c64ea2e9829ab9909962801ae44, Client-RequestTS=1727053267633, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.069 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=387a4c64ea2e9829ab9909962801ae44, Client-RequestTS=1727053267633, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.069 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 300600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@11c673a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:08.069 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:08.240 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=450642b2b6e023f3064b0d17cac486a9, Client-RequestTS=1727053268132, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.350 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=450642b2b6e023f3064b0d17cac486a9, Client-RequestTS=1727053268132, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.459 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=450642b2b6e023f3064b0d17cac486a9, Client-RequestTS=1727053268132, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=450642b2b6e023f3064b0d17cac486a9, Client-RequestTS=1727053268132, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:08.739 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a6e2b9944055ec1515cce04e2b890033, Client-RequestTS=1727053268631, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.852 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a6e2b9944055ec1515cce04e2b890033, Client-RequestTS=1727053268631, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.962 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a6e2b9944055ec1515cce04e2b890033, Client-RequestTS=1727053268631, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.072 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a6e2b9944055ec1515cce04e2b890033, Client-RequestTS=1727053268631, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.072 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:09.243 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a8ea54c3038c89f12ce55a4c033f0ee, Client-RequestTS=1727053269134, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.351 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a8ea54c3038c89f12ce55a4c033f0ee, Client-RequestTS=1727053269134, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.459 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a8ea54c3038c89f12ce55a4c033f0ee, Client-RequestTS=1727053269134, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.566 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a8ea54c3038c89f12ce55a4c033f0ee, Client-RequestTS=1727053269134, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.566 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:09.738 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f937927ab47921bd8aca385e96c4faa, Client-RequestTS=1727053269630, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.848 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f937927ab47921bd8aca385e96c4faa, Client-RequestTS=1727053269630, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f937927ab47921bd8aca385e96c4faa, Client-RequestTS=1727053269630, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.064 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f937927ab47921bd8aca385e96c4faa, Client-RequestTS=1727053269630, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.064 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:10.236 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1b59ee4621a4546cfc27fb884307205, Client-RequestTS=1727053270126, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.344 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1b59ee4621a4546cfc27fb884307205, Client-RequestTS=1727053270126, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.452 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1b59ee4621a4546cfc27fb884307205, Client-RequestTS=1727053270126, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.561 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1b59ee4621a4546cfc27fb884307205, Client-RequestTS=1727053270126, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.561 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:10.734 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9656fcea1908b4195fddad94c42f485c, Client-RequestTS=1727053270623, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.844 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9656fcea1908b4195fddad94c42f485c, Client-RequestTS=1727053270623, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.953 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9656fcea1908b4195fddad94c42f485c, Client-RequestTS=1727053270623, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.061 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9656fcea1908b4195fddad94c42f485c, Client-RequestTS=1727053270623, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.061 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:11.235 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=328f2fdcce36d40d9456475357dc577c, Client-RequestTS=1727053271124, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.344 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=328f2fdcce36d40d9456475357dc577c, Client-RequestTS=1727053271124, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.453 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=328f2fdcce36d40d9456475357dc577c, Client-RequestTS=1727053271124, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.562 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=328f2fdcce36d40d9456475357dc577c, Client-RequestTS=1727053271124, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.562 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:11.733 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d5a5c646f482ccab480f42eef19b7480, Client-RequestTS=1727053271625, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.842 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d5a5c646f482ccab480f42eef19b7480, Client-RequestTS=1727053271625, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.952 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d5a5c646f482ccab480f42eef19b7480, Client-RequestTS=1727053271625, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.062 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d5a5c646f482ccab480f42eef19b7480, Client-RequestTS=1727053271625, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.062 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:12.231 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=252c73279031c03e8e8dcdce2e54e2ac, Client-RequestTS=1727053272123, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.341 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=252c73279031c03e8e8dcdce2e54e2ac, Client-RequestTS=1727053272123, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.447 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=252c73279031c03e8e8dcdce2e54e2ac, Client-RequestTS=1727053272123, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.478 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 401100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@582c05bc[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:12.555 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=252c73279031c03e8e8dcdce2e54e2ac, Client-RequestTS=1727053272123, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.555 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:12.727 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=54bd0fb1eab1934468396a5dcd3f4aec, Client-RequestTS=1727053272618, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.835 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=54bd0fb1eab1934468396a5dcd3f4aec, Client-RequestTS=1727053272618, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.944 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=54bd0fb1eab1934468396a5dcd3f4aec, Client-RequestTS=1727053272618, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.054 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=54bd0fb1eab1934468396a5dcd3f4aec, Client-RequestTS=1727053272618, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.054 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:13.223 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d0d96fc356ebf9bd7279f988c9aa41dd, Client-RequestTS=1727053273115, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.333 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d0d96fc356ebf9bd7279f988c9aa41dd, Client-RequestTS=1727053273115, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.443 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d0d96fc356ebf9bd7279f988c9aa41dd, Client-RequestTS=1727053273115, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.554 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d0d96fc356ebf9bd7279f988c9aa41dd, Client-RequestTS=1727053273115, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.554 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:13.726 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7ecd334ab7b3e5a8bd5868ab7be422e7, Client-RequestTS=1727053273616, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.834 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7ecd334ab7b3e5a8bd5868ab7be422e7, Client-RequestTS=1727053273616, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.943 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7ecd334ab7b3e5a8bd5868ab7be422e7, Client-RequestTS=1727053273616, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.052 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7ecd334ab7b3e5a8bd5868ab7be422e7, Client-RequestTS=1727053273616, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.052 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.223 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=678c359b7668ef4a83649683caaf25eb, Client-RequestTS=1727053274115, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.330 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=678c359b7668ef4a83649683caaf25eb, Client-RequestTS=1727053274115, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.441 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=678c359b7668ef4a83649683caaf25eb, Client-RequestTS=1727053274115, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.553 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=678c359b7668ef4a83649683caaf25eb, Client-RequestTS=1727053274115, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.553 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.724 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=825778d661674bc03618c32a168d505d, Client-RequestTS=1727053274615, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.833 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=825778d661674bc03618c32a168d505d, Client-RequestTS=1727053274615, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.943 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=825778d661674bc03618c32a168d505d, Client-RequestTS=1727053274615, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.051 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=825778d661674bc03618c32a168d505d, Client-RequestTS=1727053274615, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.051 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.222 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ca9d56d8003f627c47344dc61c69a2a, Client-RequestTS=1727053275114, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.331 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ca9d56d8003f627c47344dc61c69a2a, Client-RequestTS=1727053275114, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.443 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ca9d56d8003f627c47344dc61c69a2a, Client-RequestTS=1727053275114, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.553 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ca9d56d8003f627c47344dc61c69a2a, Client-RequestTS=1727053275114, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.553 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.723 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b545545fff9b7be1a78862b90e4a543b, Client-RequestTS=1727053275614, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.832 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b545545fff9b7be1a78862b90e4a543b, Client-RequestTS=1727053275614, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.945 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b545545fff9b7be1a78862b90e4a543b, Client-RequestTS=1727053275614, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.053 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b545545fff9b7be1a78862b90e4a543b, Client-RequestTS=1727053275614, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.053 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.225 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcec3992b9f7908fe2370795edd62ee4, Client-RequestTS=1727053276116, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.335 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcec3992b9f7908fe2370795edd62ee4, Client-RequestTS=1727053276116, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.445 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcec3992b9f7908fe2370795edd62ee4, Client-RequestTS=1727053276116, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.555 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcec3992b9f7908fe2370795edd62ee4, Client-RequestTS=1727053276116, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.555 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.726 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=97dfb19a33db772e7a984686c539e4e4, Client-RequestTS=1727053276618, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.835 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=97dfb19a33db772e7a984686c539e4e4, Client-RequestTS=1727053276618, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.943 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=97dfb19a33db772e7a984686c539e4e4, Client-RequestTS=1727053276618, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.006 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 244400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7fe3cee5[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.053 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=97dfb19a33db772e7a984686c539e4e4, Client-RequestTS=1727053276618, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.053 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.223 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=111c490b8020c7b2a4e9e59f4fd1994e, Client-RequestTS=1727053277115, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.332 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=111c490b8020c7b2a4e9e59f4fd1994e, Client-RequestTS=1727053277115, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.442 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=111c490b8020c7b2a4e9e59f4fd1994e, Client-RequestTS=1727053277115, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.551 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=111c490b8020c7b2a4e9e59f4fd1994e, Client-RequestTS=1727053277115, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.551 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b67c41c3344cadddb858aedb6dc6113a, Client-RequestTS=1727053277612, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.833 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b67c41c3344cadddb858aedb6dc6113a, Client-RequestTS=1727053277612, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.944 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b67c41c3344cadddb858aedb6dc6113a, Client-RequestTS=1727053277612, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.052 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b67c41c3344cadddb858aedb6dc6113a, Client-RequestTS=1727053277612, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.052 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.221 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=00d99322222a24122d26b463de3c7c1d, Client-RequestTS=1727053278113, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.331 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=00d99322222a24122d26b463de3c7c1d, Client-RequestTS=1727053278113, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.431 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=00d99322222a24122d26b463de3c7c1d, Client-RequestTS=1727053278113, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.532 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=00d99322222a24122d26b463de3c7c1d, Client-RequestTS=1727053278113, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.532 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.695 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6aa9eaae38f05767820b9d2ae3d1972a, Client-RequestTS=1727053278584, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.804 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6aa9eaae38f05767820b9d2ae3d1972a, Client-RequestTS=1727053278584, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.915 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6aa9eaae38f05767820b9d2ae3d1972a, Client-RequestTS=1727053278584, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.027 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6aa9eaae38f05767820b9d2ae3d1972a, Client-RequestTS=1727053278584, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.027 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.201 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c5bfd77a9e6cc87cc6af8a2f8fb667ff, Client-RequestTS=1727053279091, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.309 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c5bfd77a9e6cc87cc6af8a2f8fb667ff, Client-RequestTS=1727053279091, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.420 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c5bfd77a9e6cc87cc6af8a2f8fb667ff, Client-RequestTS=1727053279091, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.530 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c5bfd77a9e6cc87cc6af8a2f8fb667ff, Client-RequestTS=1727053279091, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.530 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.702 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a891ed8d5f58236de57dac0610aca49c, Client-RequestTS=1727053279594, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.810 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a891ed8d5f58236de57dac0610aca49c, Client-RequestTS=1727053279594, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.919 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a891ed8d5f58236de57dac0610aca49c, Client-RequestTS=1727053279594, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.030 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a891ed8d5f58236de57dac0610aca49c, Client-RequestTS=1727053279594, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.030 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:20.202 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c8968d93aaab37b2787d3f6c7910b246, Client-RequestTS=1727053280093, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.311 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c8968d93aaab37b2787d3f6c7910b246, Client-RequestTS=1727053280093, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.419 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c8968d93aaab37b2787d3f6c7910b246, Client-RequestTS=1727053280093, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.530 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c8968d93aaab37b2787d3f6c7910b246, Client-RequestTS=1727053280093, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.530 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:20.701 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=69e3101d33a863dd8f10564f83cf2a8c, Client-RequestTS=1727053280592, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.811 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=69e3101d33a863dd8f10564f83cf2a8c, Client-RequestTS=1727053280592, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.920 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=69e3101d33a863dd8f10564f83cf2a8c, Client-RequestTS=1727053280592, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.030 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=69e3101d33a863dd8f10564f83cf2a8c, Client-RequestTS=1727053280592, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.030 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.200 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9458b3e496787a58488130e2ded09355, Client-RequestTS=1727053281092, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.309 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9458b3e496787a58488130e2ded09355, Client-RequestTS=1727053281092, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.418 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9458b3e496787a58488130e2ded09355, Client-RequestTS=1727053281092, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.193 [http-nio-9300-exec-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 705100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ca1b7a2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +09:02:01.193 [http-nio-9300-exec-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 705100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ca1b7a2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -6694,7 +3280,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor82.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -6702,7 +3288,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor68.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -6754,33 +3340,27 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 559500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@42f9b69e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7437bfce, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@21367c36, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@a21546d}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 705100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@ca1b7a2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:30:48.166 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:48.474 [http-nio-9202-exec-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 18 milliseconds, 640700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4ed7b80c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] -19:30:48.474 [http-nio-9202-exec-9] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 18 milliseconds, 640700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4ed7b80c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] +09:02:29.207 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 408000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6e58ba12[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:29.641 [http-nio-9300-exec-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 644700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2184b12c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +09:02:29.641 [http-nio-9300-exec-6] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 644700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2184b12c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -6806,7 +3386,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -6814,7 +3394,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -6827,9 +3407,9 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -6866,628 +3446,476 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 18 milliseconds, 640700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4ed7b80c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 644700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2184b12c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:30:53.537 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 875200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d78ebbb[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] +09:02:33.652 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2b38f5e6dda02379fe34d12ddfc3d64f, Client-RequestTS=1727053350639, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 600300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@488f4232[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +09:02:33.652 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 600300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@488f4232[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 600300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@488f4232[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:02:33.805 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b0ede5e5ba62ed00f7e8376207bb087, Client-RequestTS=1727053353703, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.906 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b0ede5e5ba62ed00f7e8376207bb087, Client-RequestTS=1727053353703, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.007 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b0ede5e5ba62ed00f7e8376207bb087, Client-RequestTS=1727053353703, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b0ede5e5ba62ed00f7e8376207bb087, Client-RequestTS=1727053353703, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:34.261 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f0c97789d26ef94f92eb6d7002644745, Client-RequestTS=1727053354158, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.368 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f0c97789d26ef94f92eb6d7002644745, Client-RequestTS=1727053354158, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.475 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f0c97789d26ef94f92eb6d7002644745, Client-RequestTS=1727053354158, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.586 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f0c97789d26ef94f92eb6d7002644745, Client-RequestTS=1727053354158, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.586 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:34.756 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a6e267bac2af0bf2cdaf74831f16c70, Client-RequestTS=1727053354648, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.866 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a6e267bac2af0bf2cdaf74831f16c70, Client-RequestTS=1727053354648, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.974 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a6e267bac2af0bf2cdaf74831f16c70, Client-RequestTS=1727053354648, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a6e267bac2af0bf2cdaf74831f16c70, Client-RequestTS=1727053354648, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:35.258 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8544dca04893c222be49921cad3b988b, Client-RequestTS=1727053355147, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.365 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8544dca04893c222be49921cad3b988b, Client-RequestTS=1727053355147, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.474 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8544dca04893c222be49921cad3b988b, Client-RequestTS=1727053355147, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8544dca04893c222be49921cad3b988b, Client-RequestTS=1727053355147, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:35.757 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e168f5232b48737c0117d8a2aa991d5, Client-RequestTS=1727053355646, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.868 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e168f5232b48737c0117d8a2aa991d5, Client-RequestTS=1727053355646, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.977 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e168f5232b48737c0117d8a2aa991d5, Client-RequestTS=1727053355646, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.085 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e168f5232b48737c0117d8a2aa991d5, Client-RequestTS=1727053355646, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.085 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.256 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3862f990e02a6648af4d43dcc2d148f2, Client-RequestTS=1727053356148, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.365 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3862f990e02a6648af4d43dcc2d148f2, Client-RequestTS=1727053356148, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.473 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3862f990e02a6648af4d43dcc2d148f2, Client-RequestTS=1727053356148, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3862f990e02a6648af4d43dcc2d148f2, Client-RequestTS=1727053356148, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.753 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56b2111e3699e5a94c7bed2c4b568d3f, Client-RequestTS=1727053356644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.862 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56b2111e3699e5a94c7bed2c4b568d3f, Client-RequestTS=1727053356644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.973 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56b2111e3699e5a94c7bed2c4b568d3f, Client-RequestTS=1727053356644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56b2111e3699e5a94c7bed2c4b568d3f, Client-RequestTS=1727053356644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:37.253 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c0f83ce6136afb857fab9469425e18f, Client-RequestTS=1727053357145, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.364 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c0f83ce6136afb857fab9469425e18f, Client-RequestTS=1727053357145, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.472 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c0f83ce6136afb857fab9469425e18f, Client-RequestTS=1727053357145, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c0f83ce6136afb857fab9469425e18f, Client-RequestTS=1727053357145, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:37.750 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a51483a2e5a1132fadc18be64e58b2a1, Client-RequestTS=1727053357642, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.859 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a51483a2e5a1132fadc18be64e58b2a1, Client-RequestTS=1727053357642, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.970 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a51483a2e5a1132fadc18be64e58b2a1, Client-RequestTS=1727053357642, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a51483a2e5a1132fadc18be64e58b2a1, Client-RequestTS=1727053357642, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:38.250 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0320f302715b6809c24fc61e78795244, Client-RequestTS=1727053358141, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.358 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0320f302715b6809c24fc61e78795244, Client-RequestTS=1727053358141, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.468 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0320f302715b6809c24fc61e78795244, Client-RequestTS=1727053358141, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.580 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0320f302715b6809c24fc61e78795244, Client-RequestTS=1727053358141, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.580 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:38.751 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcef976738ddc0f576c2ebeb7e571b3c, Client-RequestTS=1727053358642, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.862 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcef976738ddc0f576c2ebeb7e571b3c, Client-RequestTS=1727053358642, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.971 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcef976738ddc0f576c2ebeb7e571b3c, Client-RequestTS=1727053358642, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.079 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcef976738ddc0f576c2ebeb7e571b3c, Client-RequestTS=1727053358642, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.079 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:39.250 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=917b55ab7eb6c58879e4905cbdb9dd4a, Client-RequestTS=1727053359141, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.360 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=917b55ab7eb6c58879e4905cbdb9dd4a, Client-RequestTS=1727053359141, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.469 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=917b55ab7eb6c58879e4905cbdb9dd4a, Client-RequestTS=1727053359141, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.577 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=917b55ab7eb6c58879e4905cbdb9dd4a, Client-RequestTS=1727053359141, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.577 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:39.748 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=38b891c0620ac452f8a9136fd2e5b2d7, Client-RequestTS=1727053359640, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.856 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=38b891c0620ac452f8a9136fd2e5b2d7, Client-RequestTS=1727053359640, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.966 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=38b891c0620ac452f8a9136fd2e5b2d7, Client-RequestTS=1727053359640, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.075 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=38b891c0620ac452f8a9136fd2e5b2d7, Client-RequestTS=1727053359640, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.075 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:40.245 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8567c73c91c0b7b9e3d76288f50781f, Client-RequestTS=1727053360137, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.354 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8567c73c91c0b7b9e3d76288f50781f, Client-RequestTS=1727053360137, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.463 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8567c73c91c0b7b9e3d76288f50781f, Client-RequestTS=1727053360137, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.574 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8567c73c91c0b7b9e3d76288f50781f, Client-RequestTS=1727053360137, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.574 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:40.747 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de88a5cd79d916053d738c37fc6ad01f, Client-RequestTS=1727053360637, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.855 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de88a5cd79d916053d738c37fc6ad01f, Client-RequestTS=1727053360637, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.224 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 517500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@76ea0bd6[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:56.656 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 459601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@36773fcd[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:46.345 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 524100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3eb47ca2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:59.886 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 533000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7643017e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@31778c7c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e192c1d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@72d61b6}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:49.550 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 906100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@52bf652f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:04.393 [http-nio-9202-exec-4] ERROR c.a.n.client.naming - [callServer,447] - [NA] failed to request -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.alibaba.nacos.common.http.client.request.JdkHttpClientRequest.execute(JdkHttpClientRequest.java:114) - at com.alibaba.nacos.common.http.client.NacosRestTemplate.execute(NacosRestTemplate.java:482) - at com.alibaba.nacos.common.http.client.NacosRestTemplate.exchangeForm(NacosRestTemplate.java:427) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.callServer(NamingHttpClientProxy.java:429) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:364) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:335) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:330) - at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.serverHealthy(NamingHttpClientProxy.java:272) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.serverHealthy(NamingClientProxyDelegate.java:191) - at com.alibaba.nacos.client.naming.NacosNamingService.getServerStatus(NacosNamingService.java:480) - at com.alibaba.cloud.nacos.discovery.actuate.health.NacosDiscoveryHealthIndicator.doHealthCheck(NacosDiscoveryHealthIndicator.java:62) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:07.199 [http-nio-9202-exec-4] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/actuator/health',发生未知异常. -reactor.core.Exceptions$ReactiveException: java.lang.InterruptedException - at reactor.core.Exceptions.propagate(Exceptions.java:410) - at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:96) - at reactor.core.publisher.Mono.block(Mono.java:1779) - at org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration$AdaptedReactiveHealthContributors$1.getHealth(HealthEndpointConfiguration.java:173) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor87.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor70.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1048) - at java.base/java.util.concurrent.CountDownLatch.await(CountDownLatch.java:230) - at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:91) - ... 73 common frames omitted -19:31:11.528 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:44.895 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 31700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@b2db8bc[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7847ef2c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b5c665c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78e17a99}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:52.869 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 147100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7741e19e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:47) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.file.CloudFileApplication.main(CloudFileApplication.java:15) -19:31:47.907 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 819100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@283595db[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7847ef2c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b5c665c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78e17a99}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:47) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.file.CloudFileApplication.main(CloudFileApplication.java:15) -19:31:50.909 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 43500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c34ce24[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7847ef2c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b5c665c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78e17a99}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:47) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.file.CloudFileApplication.main(CloudFileApplication.java:15) -19:32:00.636 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Connect timed out -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:99) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:34.896 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:47.650 [main] ERROR c.a.n.c.a.i.p.HttpLoginProcessor - [getResponse,102] - [NacosClientAuthServiceImpl] login http request failed url: http://47.116.173.119:8848/nacos/v1/auth/users/login, params: {username=nacos}, bodyMap: {password=nacos}, errorMsg: Read timed out -19:32:53.995 [RMI TCP Connection(18)-10.113.37.39] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,594] - HikariPool-1 - Exception during pool initialization. -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:100) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) - at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.getProduct(DataSourceHealthIndicator.java:122) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doDataSourceHealthCheck(DataSourceHealthIndicator.java:105) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doHealthCheck(DataSourceHealthIndicator.java:100) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpoint.getHealth(HealthEndpoint.java:82) - at org.springframework.boot.actuate.health.HealthEndpoint.getHealth(HealthEndpoint.java:41) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpoint.health(HealthEndpoint.java:76) - at org.springframework.boot.actuate.health.HealthEndpoint.health(HealthEndpoint.java:66) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.jmx.EndpointMBean.invoke(EndpointMBean.java:124) - at org.springframework.boot.actuate.endpoint.jmx.EndpointMBean.invoke(EndpointMBean.java:97) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:814) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:802) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1472) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:829) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:33:01.782 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -19:36:33.116 [RMI TCP Connection(4)-10.113.37.39] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,594] - HikariPool-1 - Exception during pool initialization. -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:100) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) - at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.getProduct(DataSourceHealthIndicator.java:122) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doDataSourceHealthCheck(DataSourceHealthIndicator.java:105) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doHealthCheck(DataSourceHealthIndicator.java:100) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpoint.getHealth(HealthEndpoint.java:82) - at org.springframework.boot.actuate.health.HealthEndpoint.getHealth(HealthEndpoint.java:41) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpoint.health(HealthEndpoint.java:76) - at org.springframework.boot.actuate.health.HealthEndpoint.health(HealthEndpoint.java:66) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.jmx.EndpointMBean.invoke(EndpointMBean.java:124) - at org.springframework.boot.actuate.endpoint.jmx.EndpointMBean.invoke(EndpointMBean.java:97) - at java.management/com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:814) - at java.management/com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:802) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doOperation(RMIConnectionImpl.java:1472) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl$PrivilegedOperation.run(RMIConnectionImpl.java:1310) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.doPrivilegedOperation(RMIConnectionImpl.java:1405) - at java.management.rmi/javax.management.remote.rmi.RMIConnectionImpl.invoke(RMIConnectionImpl.java:829) - at java.base/jdk.internal.reflect.GeneratedMethodAccessor42.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at java.rmi/sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:360) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:200) - at java.rmi/sun.rmi.transport.Transport$1.run(Transport.java:197) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:712) - at java.rmi/sun.rmi.transport.Transport.serviceCall(Transport.java:196) - at java.rmi/sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:587) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run0(TCPTransport.java:828) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.lambda$run$0(TCPTransport.java:705) - at java.base/java.security.AccessController.doPrivileged(AccessController.java:399) - at java.rmi/sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:704) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:56.285 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 709500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fe224db[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:36:34.163 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:36:41.742 [http-nio-9202-exec-1] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,594] - HikariPool-1 - Exception during pool initialization. -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:100) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) - at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.getProduct(DataSourceHealthIndicator.java:122) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doDataSourceHealthCheck(DataSourceHealthIndicator.java:105) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doHealthCheck(DataSourceHealthIndicator.java:100) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:59.798 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 783800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@39cc6319[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:03.424 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 126600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7064f64e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:07.138 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 947400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@65793482[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:10.961 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 365100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ac272d4[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:14.879 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 756800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2b860518[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:18.899 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 328400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@32b33525[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:23.016 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 853300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6b758677[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:27.235 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 247400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a20c734[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:31.560 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 492000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@631a0d3[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:35.872 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 412900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4f250f7a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:35.983 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 270200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59c17e5f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:40.504 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 120800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@49c2601e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:39.642 [http-nio-9300-exec-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 948700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2157b4f8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +09:04:39.642 [http-nio-9300-exec-4] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 948700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2157b4f8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) @@ -7495,12 +3923,13 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -7508,8 +3937,7 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -7522,9 +3950,9 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -7561,30 +3989,87 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:36:59.569 [http-nio-9202-exec-4] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,594] - HikariPool-1 - Exception during pool initialization. -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:100) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) - at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.getProduct(DataSourceHealthIndicator.java:122) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doDataSourceHealthCheck(DataSourceHealthIndicator.java:105) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doHealthCheck(DataSourceHealthIndicator.java:100) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 948700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2157b4f8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:05:51.767 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 297700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2e113c4e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:56.600 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ceccd81cadd703e5a5ed3bf951ad3a6a, Client-RequestTS=1727053553588, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 288000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c880324[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +09:05:56.600 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 288000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c880324[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 288000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c880324[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:05:56.752 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=492313fbac47ab8d61a3e356938aa76a, Client-RequestTS=1727053556651, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:56.853 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=492313fbac47ab8d61a3e356938aa76a, Client-RequestTS=1727053556651, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:56.954 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=492313fbac47ab8d61a3e356938aa76a, Client-RequestTS=1727053556651, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:57.056 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=492313fbac47ab8d61a3e356938aa76a, Client-RequestTS=1727053556651, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:57.056 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:57.225 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=02adaa009b6a9e204eac4837b705577c, Client-RequestTS=1727053557114, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:57.334 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=02adaa009b6a9e204eac4837b705577c, Client-RequestTS=1727053557114, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:57.444 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=02adaa009b6a9e204eac4837b705577c, Client-RequestTS=1727053557114, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:57.555 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=02adaa009b6a9e204eac4837b705577c, Client-RequestTS=1727053557114, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:57.555 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:57.728 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwMH0.unNFBO_vkFfCJuVExgPM2IG_BOmzwtlWm2gacVL83eE, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c8c3edff0724771672b5131a3b739ebb, Client-RequestTS=1727053557619, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:07:19.655 [http-nio-9300-exec-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxMH0.mgQZ3uAQiNUru48JDWvlNd8p7uUY_tN-XtI-Z2jiwmY, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 389500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@13523b91[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] +09:07:19.655 [http-nio-9300-exec-4] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 389500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@13523b91[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) @@ -7592,12 +4077,13 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -7605,8 +4091,7 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor50.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -7619,9 +4104,9 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -7658,49 +4143,26 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:37:07.193 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:37:19.608 [http-nio-9202-exec-5] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,594] - HikariPool-1 - Exception during pool initialization. -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:100) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) - at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.getProduct(DataSourceHealthIndicator.java:122) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doDataSourceHealthCheck(DataSourceHealthIndicator.java:105) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doHealthCheck(DataSourceHealthIndicator.java:100) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 389500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@13523b91[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3ed4fd9c, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@297e2a0d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@78d93366}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:55:38.053 [http-nio-9300-exec-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg1MH0.Kpf2DchyCGgRi0zOmItMJXP_URHm_wNz-s1AjBBel84, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 935200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e209d8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] +09:55:38.064 [http-nio-9300-exec-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 935200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e209d8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) @@ -7708,12 +4170,13 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -7721,8 +4184,7 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor47.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -7735,9 +4197,9 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -7774,30 +4236,176 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:37:39.742 [http-nio-9202-exec-6] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,594] - HikariPool-1 - Exception during pool initialization. -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:100) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) - at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.getProduct(DataSourceHealthIndicator.java:122) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doDataSourceHealthCheck(DataSourceHealthIndicator.java:105) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doHealthCheck(DataSourceHealthIndicator.java:100) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 935200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e209d8[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:57:04.561 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cfdd81968183a30e5683cfee7a4d36b6, Client-RequestTS=1727056621554, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 736900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@44e7afd5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] +09:57:04.561 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 736900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@44e7afd5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 736900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@44e7afd5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:57:04.714 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bd7e426f5eaa3f1bf56da9f351f31029, Client-RequestTS=1727056624613, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:04.815 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bd7e426f5eaa3f1bf56da9f351f31029, Client-RequestTS=1727056624613, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:04.915 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bd7e426f5eaa3f1bf56da9f351f31029, Client-RequestTS=1727056624613, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:05.029 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bd7e426f5eaa3f1bf56da9f351f31029, Client-RequestTS=1727056624613, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:05.029 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:05.200 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=216818ea954c0b913ac97df9f72a900f, Client-RequestTS=1727056625091, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:05.309 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=216818ea954c0b913ac97df9f72a900f, Client-RequestTS=1727056625091, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:05.418 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=216818ea954c0b913ac97df9f72a900f, Client-RequestTS=1727056625091, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:05.528 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=216818ea954c0b913ac97df9f72a900f, Client-RequestTS=1727056625091, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:05.528 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:05.700 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=258c3b430731f8b7bb1deb55b90e9150, Client-RequestTS=1727056625591, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:05.809 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=258c3b430731f8b7bb1deb55b90e9150, Client-RequestTS=1727056625591, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:05.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=258c3b430731f8b7bb1deb55b90e9150, Client-RequestTS=1727056625591, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:06.025 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=258c3b430731f8b7bb1deb55b90e9150, Client-RequestTS=1727056625591, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:06.025 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:06.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=297ab89240ab710b96dab6b6b3494c7d, Client-RequestTS=1727056626088, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:06.305 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=297ab89240ab710b96dab6b6b3494c7d, Client-RequestTS=1727056626088, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:06.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=297ab89240ab710b96dab6b6b3494c7d, Client-RequestTS=1727056626088, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:06.524 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=297ab89240ab710b96dab6b6b3494c7d, Client-RequestTS=1727056626088, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:06.524 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:06.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=044b9ec04d6f26355f0597d878c290c7, Client-RequestTS=1727056626587, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:06.806 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=044b9ec04d6f26355f0597d878c290c7, Client-RequestTS=1727056626587, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:06.913 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=044b9ec04d6f26355f0597d878c290c7, Client-RequestTS=1727056626587, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:07.021 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=044b9ec04d6f26355f0597d878c290c7, Client-RequestTS=1727056626587, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:07.021 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:07.194 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f394765e05fe859fd90daacfb32fb542, Client-RequestTS=1727056627083, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:07.305 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f394765e05fe859fd90daacfb32fb542, Client-RequestTS=1727056627083, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:07.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f394765e05fe859fd90daacfb32fb542, Client-RequestTS=1727056627083, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:07.522 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f394765e05fe859fd90daacfb32fb542, Client-RequestTS=1727056627083, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:07.522 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:07.694 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a9a46cba9dd7e25ae91e06f99ec36e72, Client-RequestTS=1727056627585, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:07.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a9a46cba9dd7e25ae91e06f99ec36e72, Client-RequestTS=1727056627585, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:07.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a9a46cba9dd7e25ae91e06f99ec36e72, Client-RequestTS=1727056627585, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:08.021 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a9a46cba9dd7e25ae91e06f99ec36e72, Client-RequestTS=1727056627585, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:08.021 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:08.192 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed3b5922dd23abb90640dfd005c67c7d, Client-RequestTS=1727056628084, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:08.302 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTgzN30.fY6weRUYXqFRELmLHcbTqeJq-yEOPgKeJdkO19_1TSA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed3b5922dd23abb90640dfd005c67c7d, Client-RequestTS=1727056628084, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:58:21.368 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 345000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7be24ce[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:58:24.481 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 609500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@179c055d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:02:48.047 [http-nio-9300-exec-8] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg1MH0.Kpf2DchyCGgRi0zOmItMJXP_URHm_wNz-s1AjBBel84, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 50500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@263892cd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] +10:02:48.048 [http-nio-9300-exec-8] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 50500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@263892cd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) @@ -7805,12 +4413,13 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor61.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -7818,8 +4427,7 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor47.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -7832,9 +4440,9 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -7871,2833 +4479,8 @@ java.sql.SQLNonTransientConnectionException: Data source rejected establishment at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:37:40.273 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:37:59.571 [http-nio-9202-exec-7] ERROR c.z.h.p.HikariPool - [throwPoolInitializationException,594] - HikariPool-1 - Exception during pool initialization. -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.zaxxer.hikari.util.DriverDataSource.getConnection(DriverDataSource.java:138) - at com.zaxxer.hikari.pool.PoolBase.newConnection(PoolBase.java:359) - at com.zaxxer.hikari.pool.PoolBase.newPoolEntry(PoolBase.java:201) - at com.zaxxer.hikari.pool.HikariPool.createPoolEntry(HikariPool.java:470) - at com.zaxxer.hikari.pool.HikariPool.checkFailFast(HikariPool.java:561) - at com.zaxxer.hikari.pool.HikariPool.(HikariPool.java:100) - at com.zaxxer.hikari.HikariDataSource.getConnection(HikariDataSource.java:112) - at org.springframework.jdbc.datasource.DataSourceUtils.fetchConnection(DataSourceUtils.java:160) - at org.springframework.jdbc.datasource.DataSourceUtils.doGetConnection(DataSourceUtils.java:118) - at org.springframework.jdbc.datasource.DataSourceUtils.getConnection(DataSourceUtils.java:81) - at org.springframework.jdbc.core.JdbcTemplate.execute(JdbcTemplate.java:342) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.getProduct(DataSourceHealthIndicator.java:122) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doDataSourceHealthCheck(DataSourceHealthIndicator.java:105) - at org.springframework.boot.actuate.jdbc.DataSourceHealthIndicator.doHealthCheck(DataSourceHealthIndicator.java:100) - at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -19:38:13.301 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:38:18.383 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -19:56:40.760 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:57:13.784 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Connect timed out -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:99) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:57:46.915 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:58:19.940 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:58:54.142 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:59:27.257 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:00:00.391 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:00:33.466 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:01:06.557 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:01:39.595 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:02:12.627 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:02:45.736 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:03:18.762 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:03:51.876 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:04:24.956 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:04:57.975 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:05:31.020 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:05:44.549 [http-nio-9202-exec-4] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/gen/importTable',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'dbName' for method parameter type String is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:220) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:196) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:126) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -20:05:57.016 [http-nio-9202-exec-8] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/gen/importTable',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'dbName' for method parameter type String is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:220) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:196) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:126) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -20:06:04.041 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:06:37.088 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:07:10.147 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:07:43.163 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:08:16.223 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:08:37.560 [http-nio-9202-exec-8] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/gen/importTable',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'dbName' for method parameter type String is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:220) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:196) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:126) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -20:08:49.240 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:09:22.272 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:09:55.352 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:10:28.390 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:11:01.538 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:11:34.707 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:12:07.840 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:12:40.857 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:13:13.908 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:13:46.930 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:14:19.948 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:14:52.983 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:15:26.088 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:15:59.114 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:16:32.150 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:17:05.178 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:17:38.217 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:18:11.249 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:18:44.283 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:19:17.316 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:19:50.416 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:20:23.456 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:20:56.488 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:21:29.572 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:22:02.597 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:22:35.617 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:23:08.662 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:23:41.728 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:24:14.741 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:24:47.767 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:25:20.843 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:25:53.975 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:26:27.090 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:27:00.211 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:27:33.238 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:28:06.257 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:28:39.363 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:29:12.484 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:29:45.650 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:30:19.702 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:30:52.788 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:31:25.838 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:31:59.048 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:32:32.251 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:33:05.320 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:33:38.666 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:11.695 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:29.288 [http-nio-9202-exec-4] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/gen/importTable',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'dbName' for method parameter type String is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:220) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:196) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:126) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:44.802 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:54.427 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -20:35:24.130 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:35:58.188 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:31.330 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:37:04.360 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:37:37.435 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:38:10.464 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:38:43.504 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:39:16.575 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:39:49.604 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:40:22.644 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:40:55.678 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:41:28.745 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:42:01.787 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:42:34.817 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:43:07.834 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:43:40.923 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:44:15.064 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:44:48.105 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:45:21.132 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:45:54.187 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:46:27.205 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:47:00.226 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:47:33.312 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:48:06.381 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:48:39.419 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:49:12.460 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:49:45.491 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:50:18.641 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:50:51.797 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:51:24.933 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:51:58.104 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:52:31.249 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:53:04.332 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:53:37.365 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:54:10.472 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:54:44.638 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:55:17.766 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:55:50.854 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:56:24.012 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:56:57.038 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:57:30.125 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:58:03.157 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:58:36.174 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:59:09.212 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:59:42.291 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:00:15.326 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:00:48.358 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:01:21.472 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:01:54.600 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:02:27.618 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:03:00.775 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:03:33.906 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:04:06.936 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:04:39.973 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:05:13.011 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:05:46.042 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:06:19.115 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:06:52.181 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 50500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@263892cd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@135f135, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4a2ed3f6, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@45d58aa3}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted diff --git a/logs/cloud-file/info.2024-09-16.log b/logs/cloud-file/info.2024-09-16.log index 6a83c53..f7c72b7 100644 --- a/logs/cloud-file/info.2024-09-16.log +++ b/logs/cloud-file/info.2024-09-16.log @@ -1,253 +1,64 @@ -20:12:11.427 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:12:13.390 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:12:13.391 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:12:13.458 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:12:13.644 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -20:13:31.193 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:32.819 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:13:32.822 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:13:32.881 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:13:33.612 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:13:36.491 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:13:36.491 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:13:36.492 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:13:36.498 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:13:36.504 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:13:36.504 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:13:37.095 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of bfcca59d-a932-444e-888a-2a0813894ed4 -20:13:37.098 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->bfcca59d-a932-444e-888a-2a0813894ed4 -20:13:37.098 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bfcca59d-a932-444e-888a-2a0813894ed4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:13:37.098 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bfcca59d-a932-444e-888a-2a0813894ed4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:13:37.099 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bfcca59d-a932-444e-888a-2a0813894ed4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:13:37.099 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bfcca59d-a932-444e-888a-2a0813894ed4] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:13:37.100 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:13:37.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bfcca59d-a932-444e-888a-2a0813894ed4] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726488818877_39.144.43.42_62461 -20:13:37.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bfcca59d-a932-444e-888a-2a0813894ed4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:37.392 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bfcca59d-a932-444e-888a-2a0813894ed4] Notify connected event to listeners. -20:13:37.392 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bfcca59d-a932-444e-888a-2a0813894ed4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d44a8 -20:13:37.392 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:13:37.393 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.0.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:13:37.499 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.0.139:9300 register finished -20:13:37.631 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 10.376 seconds (process running for 10.979) -20:13:37.637 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:13:37.637 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:13:37.637 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -20:13:37.644 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -20:13:37.644 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -20:13:37.645 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -20:13:37.645 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:13:37.645 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -20:13:37.645 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -20:13:37.646 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -20:13:37.646 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -20:13:37.818 [RMI TCP Connection(1)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:22:24.571 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:22:24.572 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.0.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:22:24.606 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:22:24.607 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:22:24.607 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:22:24.607 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:22:24.607 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->bfcca59d-a932-444e-888a-2a0813894ed4 -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@177cb9e4[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 175] -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6687767[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:22:24.608 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726488818877_39.144.43.42_62461 -20:22:24.610 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@42adecbb[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 113] -20:22:24.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->bfcca59d-a932-444e-888a-2a0813894ed4 -20:22:24.611 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:22:24.611 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:22:24.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:27:38.766 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:27:40.571 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:27:40.571 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:27:40.652 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:27:41.415 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:27:44.016 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:27:44.016 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:27:44.017 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:27:44.021 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:27:44.026 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:27:44.026 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:27:44.210 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of dade1c77-b61b-4a3f-9f77-5932f4b10828 -20:27:44.212 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->dade1c77-b61b-4a3f-9f77-5932f4b10828 -20:27:44.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dade1c77-b61b-4a3f-9f77-5932f4b10828] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:27:44.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dade1c77-b61b-4a3f-9f77-5932f4b10828] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:27:44.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dade1c77-b61b-4a3f-9f77-5932f4b10828] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:27:44.214 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dade1c77-b61b-4a3f-9f77-5932f4b10828] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:27:44.214 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:27:44.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dade1c77-b61b-4a3f-9f77-5932f4b10828] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489665952_39.144.43.42_62473 -20:27:44.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dade1c77-b61b-4a3f-9f77-5932f4b10828] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:27:44.444 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dade1c77-b61b-4a3f-9f77-5932f4b10828] Notify connected event to listeners. -20:27:44.445 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:27:44.445 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dade1c77-b61b-4a3f-9f77-5932f4b10828] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d16e8 -20:27:44.446 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.0.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:27:44.583 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.0.139:9300 register finished -20:27:44.730 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 9.005 seconds (process running for 9.573) -20:27:44.737 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:27:44.737 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:27:44.738 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -20:27:44.743 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -20:27:44.743 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -20:27:44.743 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -20:27:44.743 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:27:44.743 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -20:27:44.743 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -20:27:44.743 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -20:27:44.743 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -20:27:45.221 [RMI TCP Connection(3)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:31:10.588 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:31:10.588 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.0.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:31:10.643 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:31:10.644 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:31:10.644 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->dade1c77-b61b-4a3f-9f77-5932f4b10828 -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@55d59f5b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 68] -20:31:10.645 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:31:10.646 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@24c78a98[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:31:10.646 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489665952_39.144.43.42_62473 -20:31:10.648 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@cfaf46c[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 52] -20:31:10.649 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->dade1c77-b61b-4a3f-9f77-5932f4b10828 -20:31:10.649 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:31:10.649 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:31:10.649 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:31:18.165 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:31:19.612 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:31:19.612 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:31:19.691 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:31:20.389 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:31:22.853 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:31:22.854 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:31:22.854 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:31:22.858 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:31:22.861 [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:22.861 [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:22.997 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9075e634-ae14-4483-b8a0-2d2197d1af45 -20:31:22.998 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->9075e634-ae14-4483-b8a0-2d2197d1af45 -20:31:22.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9075e634-ae14-4483-b8a0-2d2197d1af45] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:31:22.999 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9075e634-ae14-4483-b8a0-2d2197d1af45] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:31:23.000 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9075e634-ae14-4483-b8a0-2d2197d1af45] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:31:23.000 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9075e634-ae14-4483-b8a0-2d2197d1af45] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:31:23.001 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:31:23.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9075e634-ae14-4483-b8a0-2d2197d1af45] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489884722_39.144.43.42_62486 -20:31:23.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9075e634-ae14-4483-b8a0-2d2197d1af45] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:31:23.180 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9075e634-ae14-4483-b8a0-2d2197d1af45] Notify connected event to listeners. -20:31:23.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9075e634-ae14-4483-b8a0-2d2197d1af45] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d2fd8 -20:31:23.180 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:31:23.181 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.0.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:31:23.224 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.0.139:9300 register finished -20:31:23.397 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 8.036 seconds (process running for 8.577) -20:31:23.405 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:31:23.405 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:31:23.406 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -20:31:23.413 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -20:31:23.413 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -20:31:23.414 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -20:31:23.415 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:31:23.415 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -20:31:23.415 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -20:31:23.415 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -20:31:23.415 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -20:31:23.988 [RMI TCP Connection(3)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:32:14.197 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:32:14.197 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.0.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:32:14.265 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:32:14.266 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:32:14.266 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:32:14.266 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:32:14.266 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:32:14.266 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:32:14.266 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:32:14.266 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->9075e634-ae14-4483-b8a0-2d2197d1af45 -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2f73e074[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 17] -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@72514ca0[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:32:14.267 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489884722_39.144.43.42_62486 -20:32:14.270 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@46e45bc0[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 21] -20:32:14.270 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->9075e634-ae14-4483-b8a0-2d2197d1af45 -20:32:14.271 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:32:14.271 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:32:14.271 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -21:04:21.783 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -21:04:23.593 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -21:04:23.594 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -21:04:23.669 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -21:04:24.582 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -21:04:27.124 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -21:04:27.125 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -21:04:27.126 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -21:04:27.133 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -21:04:27.139 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -21:04:27.140 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -21:04:27.628 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 86805c74-869d-4169-9f48-70503dd9b4ac -21:04:27.629 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->86805c74-869d-4169-9f48-70503dd9b4ac -21:04:27.630 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86805c74-869d-4169-9f48-70503dd9b4ac] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -21:04:27.630 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86805c74-869d-4169-9f48-70503dd9b4ac] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -21:04:27.630 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86805c74-869d-4169-9f48-70503dd9b4ac] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -21:04:27.630 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86805c74-869d-4169-9f48-70503dd9b4ac] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -21:04:27.631 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -21:04:27.870 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86805c74-869d-4169-9f48-70503dd9b4ac] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726491869418_39.144.43.42_63059 -21:04:27.871 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86805c74-869d-4169-9f48-70503dd9b4ac] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -21:04:27.871 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86805c74-869d-4169-9f48-70503dd9b4ac] Notify connected event to listeners. -21:04:27.871 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [86805c74-869d-4169-9f48-70503dd9b4ac] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d1b20 -21:04:27.871 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -21:04:27.872 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.0.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -21:04:27.963 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.0.139:9300 register finished -21:04:28.113 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 9.826 seconds (process running for 10.483) -21:04:28.120 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -21:04:28.120 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -21:04:28.121 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -21:04:28.126 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -21:04:28.127 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -21:04:28.128 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -21:04:28.128 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -21:04:28.128 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -21:04:28.128 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -21:04:28.128 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -21:04:28.128 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -21:04:28.389 [RMI TCP Connection(6)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -21:04:58.588 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -21:04:58.588 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.0.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -21:04:58.652 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -21:04:58.653 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -21:04:58.654 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -21:04:58.654 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->86805c74-869d-4169-9f48-70503dd9b4ac -21:04:58.654 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@36f8b34f[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 10] -21:04:58.654 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -21:04:58.654 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@55a3e729[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -21:04:58.654 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726491869418_39.144.43.42_63059 -21:04:58.656 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@53b5d48[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 17] -21:04:58.657 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->86805c74-869d-4169-9f48-70503dd9b4ac -21:04:58.657 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -21:04:58.657 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -21:04:58.657 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +19:17:36.711 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +19:17:40.152 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] +19:17:40.154 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +19:17:40.154 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +19:17:40.255 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +19:17:41.258 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +19:17:44.246 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] +19:17:44.404 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +19:17:44.405 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +19:17:44.406 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +19:17:44.412 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +19:17:44.419 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +19:17:44.419 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +19:17:44.525 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 82c81b58-66aa-45b1-86ca-34c26c10732d +19:17:44.527 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->82c81b58-66aa-45b1-86ca-34c26c10732d +19:17:44.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [82c81b58-66aa-45b1-86ca-34c26c10732d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +19:17:44.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [82c81b58-66aa-45b1-86ca-34c26c10732d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +19:17:44.528 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [82c81b58-66aa-45b1-86ca-34c26c10732d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +19:17:44.529 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [82c81b58-66aa-45b1-86ca-34c26c10732d] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} +19:17:44.529 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +19:17:44.587 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [82c81b58-66aa-45b1-86ca-34c26c10732d] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726485465934_117.143.60.138_52340 +19:17:44.588 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [82c81b58-66aa-45b1-86ca-34c26c10732d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +19:17:44.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [82c81b58-66aa-45b1-86ca-34c26c10732d] Notify connected event to listeners. +19:17:44.588 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [82c81b58-66aa-45b1-86ca-34c26c10732d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000002a8574362a8 +19:17:44.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +19:17:44.589 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.82', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +19:17:44.612 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.82:9300 register finished +19:17:44.767 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 11.279 seconds (process running for 12.001) +19:17:44.775 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +19:17:44.775 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +19:17:44.776 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one +19:17:44.782 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 +19:17:44.783 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP +19:17:44.784 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one +19:17:44.784 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 +19:17:44.784 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP +19:17:44.785 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one +19:17:44.786 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 +19:17:44.786 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP +19:18:09.019 [http-nio-9300-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +20:10:53.593 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:10:53.594 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.82', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:10:53.611 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:10:53.613 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:10:53.613 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:10:53.613 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:10:53.613 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:10:53.613 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:10:53.613 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:10:53.613 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:10:53.614 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:10:53.614 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:10:53.614 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:10:53.614 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:10:53.614 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->82c81b58-66aa-45b1-86ca-34c26c10732d +20:10:53.614 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6680413d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1060] +20:10:53.614 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:10:53.615 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6c91cd5a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:10:53.615 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726485465934_117.143.60.138_52340 +20:10:53.617 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@d96e82[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 648] +20:10:53.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->82c81b58-66aa-45b1-86ca-34c26c10732d +20:10:53.618 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:10:53.618 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:10:53.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop diff --git a/logs/cloud-file/info.log b/logs/cloud-file/info.log index 5ab7a36..1dac4b1 100644 --- a/logs/cloud-file/info.log +++ b/logs/cloud-file/info.log @@ -1,2299 +1,409 @@ -14:54:39.856 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:54:41.795 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:54:41.796 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:54:41.884 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:54:43.144 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:54:46.130 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -14:54:46.132 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -14:54:46.133 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -14:54:46.140 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -14:54:46.146 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -14:54:46.146 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -14:54:46.270 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 0f37e85e-7bd5-47b6-8ec0-9247a94d7432 -14:54:46.273 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->0f37e85e-7bd5-47b6-8ec0-9247a94d7432 -14:54:46.273 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f37e85e-7bd5-47b6-8ec0-9247a94d7432] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:54:46.273 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f37e85e-7bd5-47b6-8ec0-9247a94d7432] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:54:46.273 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f37e85e-7bd5-47b6-8ec0-9247a94d7432] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:54:46.274 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f37e85e-7bd5-47b6-8ec0-9247a94d7432] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -14:54:46.274 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:54:46.470 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f37e85e-7bd5-47b6-8ec0-9247a94d7432] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556088432_117.136.120.204_26260 -14:54:46.470 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f37e85e-7bd5-47b6-8ec0-9247a94d7432] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:54:46.470 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f37e85e-7bd5-47b6-8ec0-9247a94d7432] Notify connected event to listeners. -14:54:46.470 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0f37e85e-7bd5-47b6-8ec0-9247a94d7432] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d2150 -14:54:46.470 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -14:54:46.471 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -14:54:46.557 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.245.139:9300 register finished -14:54:46.690 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 10.321 seconds (process running for 10.974) -14:54:46.698 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -14:54:46.698 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -14:54:46.698 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -14:54:46.706 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -14:54:46.706 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -14:54:46.707 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -14:54:46.708 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -14:54:46.708 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -14:54:46.708 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -14:54:46.708 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -14:54:46.708 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -14:54:47.161 [RMI TCP Connection(5)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:06:08.547 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:06:08.548 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:06:08.601 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:06:08.602 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:06:08.602 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:06:08.603 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:06:08.603 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:06:08.603 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:06:08.603 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:06:08.603 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:06:08.603 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:06:08.604 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:06:08.604 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:06:08.604 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:06:08.604 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->0f37e85e-7bd5-47b6-8ec0-9247a94d7432 -15:06:08.604 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6fde3af8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 226] -15:06:08.604 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:06:08.604 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1009e308[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:06:08.605 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556088432_117.136.120.204_26260 -15:06:08.608 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@36410eb2[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 141] -15:06:08.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->0f37e85e-7bd5-47b6-8ec0-9247a94d7432 -15:06:08.609 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:06:08.609 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:06:08.609 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:08:05.533 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:08:07.288 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:08:07.289 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:08:07.358 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:08:08.196 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:08:10.764 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:08:10.764 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:08:10.765 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:08:10.771 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:08:10.775 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:08:10.776 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:08:10.936 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a72d2893-e7a5-4236-9c24-c56594be9c9e -15:08:10.937 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a72d2893-e7a5-4236-9c24-c56594be9c9e -15:08:10.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a72d2893-e7a5-4236-9c24-c56594be9c9e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:08:10.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a72d2893-e7a5-4236-9c24-c56594be9c9e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:08:10.938 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a72d2893-e7a5-4236-9c24-c56594be9c9e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:08:10.939 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a72d2893-e7a5-4236-9c24-c56594be9c9e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:08:10.939 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:08:11.151 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a72d2893-e7a5-4236-9c24-c56594be9c9e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556893087_117.136.120.204_26273 -15:08:11.151 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a72d2893-e7a5-4236-9c24-c56594be9c9e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:11.151 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a72d2893-e7a5-4236-9c24-c56594be9c9e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d1b20 -15:08:11.151 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a72d2893-e7a5-4236-9c24-c56594be9c9e] Notify connected event to listeners. -15:08:11.152 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:08:11.152 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:08:11.248 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.245.139:9300 register finished -15:08:11.418 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 9.193 seconds (process running for 9.71) -15:08:11.426 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:08:11.426 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:08:11.427 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -15:08:11.434 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -15:08:11.434 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -15:08:11.435 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -15:08:11.436 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:08:11.436 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -15:08:11.436 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -15:08:11.436 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -15:08:11.436 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -15:08:11.784 [RMI TCP Connection(1)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:32:43.309 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:32:43.309 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:32:43.367 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:32:43.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:32:43.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:32:43.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:32:43.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:32:43.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:32:43.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:32:43.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:32:43.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:32:43.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:32:43.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:32:43.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:32:43.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a72d2893-e7a5-4236-9c24-c56594be9c9e -15:32:43.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@772c80bf[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 489] -15:32:43.369 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:32:43.369 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2e18259d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:32:43.369 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556893087_117.136.120.204_26273 -15:32:43.371 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@c2d653f[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 299] -15:32:43.371 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a72d2893-e7a5-4236-9c24-c56594be9c9e -15:32:43.372 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:32:43.372 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:32:43.373 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:32:51.024 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:32:52.536 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:32:52.536 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:32:52.613 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:32:53.307 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:32:55.976 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:32:55.976 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:32:55.977 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:32:55.980 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:32:55.983 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:32:55.983 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:32:56.202 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2 -15:32:56.203 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2 -15:32:56.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:32:56.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:32:56.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:32:56.204 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:32:56.204 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:32:56.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558378348_117.136.120.204_26602 -15:32:56.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:32:56.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d14f8 -15:32:56.377 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2] Notify connected event to listeners. -15:32:56.377 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:32:56.378 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:32:56.457 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.245.139:9300 register finished -15:32:56.640 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 8.454 seconds (process running for 8.992) -15:32:56.648 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:32:56.648 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:32:56.649 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -15:32:56.654 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -15:32:56.655 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -15:32:56.656 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -15:32:56.656 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:32:56.656 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -15:32:56.656 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -15:32:56.656 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -15:32:56.656 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -15:32:56.836 [RMI TCP Connection(7)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:37:52.614 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:37:52.614 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:37:52.650 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:37:52.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:37:52.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:37:52.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:37:52.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:37:52.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:37:52.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:37:52.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:37:52.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:37:52.652 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:37:52.652 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:37:52.652 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:37:52.652 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2 -15:37:52.652 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2fac1b72[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 98] -15:37:52.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:37:52.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6c4e8f58[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:37:52.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558378348_117.136.120.204_26602 -15:37:52.655 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@761976e9[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 69] -15:37:52.655 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b1bbfe8c-d920-44fa-a6b7-5c8beb70ccc2 -15:37:52.655 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:37:52.655 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:37:52.656 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:41:55.380 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:41:57.043 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:41:57.043 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:41:57.129 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:41:57.984 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:42:00.677 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:42:00.677 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:42:00.678 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:42:00.684 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:42:00.691 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:42:00.691 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:42:00.818 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e02e5a82-3c75-46a3-b777-b83a650fb28e -15:42:00.821 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->e02e5a82-3c75-46a3-b777-b83a650fb28e -15:42:00.822 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e02e5a82-3c75-46a3-b777-b83a650fb28e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:42:00.822 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e02e5a82-3c75-46a3-b777-b83a650fb28e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:42:00.823 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e02e5a82-3c75-46a3-b777-b83a650fb28e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:42:00.824 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e02e5a82-3c75-46a3-b777-b83a650fb28e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:42:00.824 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:42:01.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e02e5a82-3c75-46a3-b777-b83a650fb28e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558922987_117.136.120.204_26625 -15:42:01.281 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e02e5a82-3c75-46a3-b777-b83a650fb28e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:01.281 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e02e5a82-3c75-46a3-b777-b83a650fb28e] Notify connected event to listeners. -15:42:01.281 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e02e5a82-3c75-46a3-b777-b83a650fb28e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d2150 -15:42:01.281 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:42:01.282 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:42:01.361 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.245.139:9300 register finished -15:42:01.511 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 9.097 seconds (process running for 9.699) -15:42:01.522 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:42:01.522 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:42:01.523 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -15:42:01.531 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -15:42:01.531 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -15:42:01.533 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -15:42:01.533 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:42:01.533 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -15:42:01.533 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -15:42:01.534 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -15:42:01.534 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -15:42:02.055 [RMI TCP Connection(10)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:51:37.271 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:51:37.272 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:51:37.322 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:51:37.323 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:51:37.323 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:51:37.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->e02e5a82-3c75-46a3-b777-b83a650fb28e -15:51:37.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5a7db151[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 191] -15:51:37.325 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:51:37.325 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@198ad42d[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:51:37.325 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558922987_117.136.120.204_26625 -15:51:37.327 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2d16fdba[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 127] -15:51:37.329 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->e02e5a82-3c75-46a3-b777-b83a650fb28e -15:51:37.329 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:51:37.329 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:51:37.332 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:51:44.117 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:51:46.401 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:51:46.402 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:51:46.483 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:51:47.676 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:51:49.823 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -15:51:51.206 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@451f08ea[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -15:51:51.207 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@dcf495c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -15:51:51.207 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@60610a2b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -15:51:51.516 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -15:51:51.563 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:51:51.564 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:51:51.565 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:51:51.573 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:51:51.576 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:51:51.577 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:51:51.716 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a11905e0-eaf6-449b-b774-555c1afb2e0a -15:51:51.719 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a11905e0-eaf6-449b-b774-555c1afb2e0a -15:51:51.719 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:51:51.720 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:51:51.720 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:51:51.721 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:51:51.722 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:51:51.930 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726559513896_117.136.120.204_26639 -15:51:51.931 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Notify connected event to listeners. -15:51:51.931 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:51:51.931 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:51:51.931 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000015f26138000 -15:51:51.932 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:51:51.994 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.245.139:9202 register finished -15:51:52.148 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 10.89 seconds (process running for 11.381) -15:51:52.160 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:51:52.161 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:51:52.163 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -15:51:52.171 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:51:52.171 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -15:51:52.171 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -15:51:52.171 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -15:51:52.172 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -15:51:52.172 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -15:51:52.172 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -15:51:52.172 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -15:51:52.685 [RMI TCP Connection(4)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:51:52.708 [RMI TCP Connection(5)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -15:51:53.479 [RMI TCP Connection(5)-192.168.245.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@275e5bb3 -15:51:53.485 [RMI TCP Connection(5)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:52:01.446 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:52:03.333 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:52:03.333 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:52:03.408 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:52:04.283 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:52:06.113 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:52:06.113 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:52:06.114 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:52:06.117 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:52:06.120 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:52:06.121 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:52:06.242 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 25faeec0-a20a-4095-8fbf-51d80c4ace70 -15:52:06.243 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->25faeec0-a20a-4095-8fbf-51d80c4ace70 -15:52:06.243 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:52:06.243 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:52:06.244 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:52:06.244 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:52:06.244 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:52:06.400 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726559528388_117.136.120.204_26646 -15:52:06.401 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:52:06.401 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Notify connected event to listeners. -15:52:06.401 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d16e8 -15:52:06.401 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:52:06.402 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:52:06.490 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.245.139:9300 register finished -15:52:06.613 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 8.278 seconds (process running for 8.795) -15:52:06.622 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:52:06.623 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:52:06.623 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -15:52:06.628 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -15:52:06.628 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -15:52:06.629 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -15:52:06.629 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:52:06.629 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -15:52:06.629 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -15:52:06.629 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -15:52:06.630 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -15:52:06.889 [RMI TCP Connection(5)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:53:57.858 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:53:57.858 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:53:57.917 [boundedElastic-2] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:53:57.917 [boundedElastic-2] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:53:58.436 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12132 -15:53:58.436 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12132 -16:12:10.694 [lettuce-nioEventLoop-6-2] 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:833) -16:12:10.694 [lettuce-nioEventLoop-6-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset -java.net.SocketException: Connection reset - at java.base/sun.nio.ch.SocketChannelImpl.throwConnectionReset(SocketChannelImpl.java:394) - at java.base/sun.nio.ch.SocketChannelImpl.read(SocketChannelImpl.java:426) - at io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:255) - at io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:356) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:994) - at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.897 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:12:10.897 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:12:10.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Server healthy check fail, currentConnection = 1726559522912_117.136.120.204_26643 -16:12:10.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.946 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Server healthy check fail, currentConnection = 1726559513896_117.136.120.204_26639 -16:12:10.946 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.946 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.025 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.103 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.244 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.276 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.276 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.291 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.476 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.476 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.507 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.507 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.821 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.821 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.233 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.233 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.719 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.719 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.742 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.750 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.750 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.350 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.350 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.365 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.573 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.669 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.232 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.280 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.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.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.390 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.500 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.531 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.609 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.636 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.429 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.445 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.689 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.695 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.554 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.600 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.600 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.852 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.868 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.962 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.166 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:17.166 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:17.862 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:17.879 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:17.971 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:17.971 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:18.123 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.123 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.209 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.209 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.312 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.556 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.758 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.758 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.994 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.994 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.263 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.263 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.312 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.326 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.543 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:23.738 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:23.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:23.920 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:23.951 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:24.001 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:24.174 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:24.206 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:24.237 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:24.633 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting fail, StatusCode(302) invalid. for url : http://47.116.173.119:20800/api/registry, content=null] -16:12:25.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:25.762 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:26.004 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:26.031 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.329 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.451 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.615 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.635 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.666 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.873 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.292 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.371 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.415 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.544 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.583 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.829 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:30.069 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:30.070 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:31.352 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.431 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753537_117.143.60.138_58338 -16:12:31.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559528388_117.136.120.204_26646 -16:12:31.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559528388_117.136.120.204_26646 -16:12:31.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Notify disconnected event to listeners -16:12:31.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Notify connected event to listeners. -16:12:31.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:12:31.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753551_117.143.60.138_58339 -16:12:31.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559522912_117.136.120.204_26643 -16:12:31.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559522912_117.136.120.204_26643 -16:12:31.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:31.494 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Notify disconnected event to listeners -16:12:31.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] DisConnected,clear listen context... -16:12:31.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Notify connected event to listeners. -16:12:31.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Connected,notify listen context... -16:12:31.543 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753598_117.143.60.138_58342 -16:12:31.543 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559505430_117.136.120.204_26637 -16:12:31.543 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559505430_117.136.120.204_26637 -16:12:31.543 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Notify disconnected event to listeners -16:12:31.544 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] DisConnected,clear listen context... -16:12:31.544 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Notify connected event to listeners. -16:12:31.544 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Connected,notify listen context... -16:12:31.561 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753610_117.143.60.138_58343 -16:12:31.561 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753551_117.143.60.138_58339 -16:12:31.561 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753551_117.143.60.138_58339 -16:12:31.562 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Notify disconnected event to listeners -16:12:31.562 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] DisConnected,clear listen context... -16:12:31.562 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Notify connected event to listeners. -16:12:31.562 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Connected,notify listen context... -16:12:31.636 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.697 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753755_117.143.60.138_58348 -16:12:31.698 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559513896_117.136.120.204_26639 -16:12:31.699 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559513896_117.136.120.204_26639 -16:12:31.700 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:31.700 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.701 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Notify disconnected event to listeners -16:12:31.703 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Notify connected event to listeners. -16:12:31.703 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:12:31.938 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753809_117.143.60.138_58349 -16:12:31.938 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753755_117.143.60.138_58348 -16:12:31.938 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753755_117.143.60.138_58348 -16:12:31.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Notify disconnected event to listeners -16:12:31.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Notify connected event to listeners. -16:12:31.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:12:33.609 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file -16:12:34.037 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gen -16:12:34.116 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -16:12:34.537 [nacos-grpc-client-executor-47.116.173.119-340] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12158 -16:12:34.538 [nacos-grpc-client-executor-47.116.173.119-340] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12158 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-341] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12172 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-341] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12172 -16:12:46.763 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:46.763 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:46.792 [lettuce-nioEventLoop-6-12] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:12:46.792 [lettuce-nioEventLoop-6-11] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:39.397 [lettuce-nioEventLoop-6-11] 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:833) -16:28:39.397 [lettuce-nioEventLoop-6-12] 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:833) -16:28:39.401 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.401 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.410 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Server healthy check fail, currentConnection = 1726560753610_117.143.60.138_58343 -16:28:39.410 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.411 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.457 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:28:39.457 [lettuce-eventExecutorLoop-1-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:28:39.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.527 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.532 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.746 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.751 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.751 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.751 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:40.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.056 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.208 [lettuce-nioEventLoop-6-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:40.209 [lettuce-nioEventLoop-6-1] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:40.330 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722292_117.136.120.204_26660 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722292_117.136.120.204_26661 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753809_117.143.60.138_58349 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753537_117.143.60.138_58338 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753809_117.143.60.138_58349 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753537_117.143.60.138_58338 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Notify disconnected event to listeners -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Notify disconnected event to listeners -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Notify connected event to listeners. -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Notify connected event to listeners. -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:28:40.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722292_117.136.120.204_26977 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753610_117.143.60.138_58343 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753610_117.143.60.138_58343 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722293_117.136.120.204_26658 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753598_117.143.60.138_58342 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753598_117.143.60.138_58342 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Notify disconnected event to listeners -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Notify disconnected event to listeners -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] DisConnected,clear listen context... -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] DisConnected,clear listen context... -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Notify connected event to listeners. -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [bf23ef11-10e6-4954-b91a-c8fde5dc27d9_config-0] Connected,notify listen context... -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Notify connected event to listeners. -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Connected,notify listen context... -16:28:40.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722531_117.136.120.204_26983 -16:28:40.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726561722292_117.136.120.204_26977 -16:28:40.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722292_117.136.120.204_26977 -16:28:40.990 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Notify disconnected event to listeners -16:28:40.990 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] DisConnected,clear listen context... -16:28:40.990 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Notify connected event to listeners. -16:28:40.990 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [c670e49e-55eb-4324-b52c-65b4492a1b9e_config-0] Connected,notify listen context... -16:28:42.179 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file -16:28:42.674 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gen -16:28:42.723 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -16:28:43.223 [nacos-grpc-client-executor-47.116.173.119-547] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12260 -16:28:43.223 [nacos-grpc-client-executor-47.116.173.119-547] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12260 -16:28:59.639 [nacos-grpc-client-executor-47.116.173.119-550] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12312 -16:28:59.640 [nacos-grpc-client-executor-47.116.173.119-550] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a11905e0-eaf6-449b-b774-555c1afb2e0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12312 -16:49:41.649 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:49:41.649 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:49:41.733 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -16:49:41.741 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->25faeec0-a20a-4095-8fbf-51d80c4ace70 -16:49:41.742 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@12e66abc[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1148] -16:49:41.743 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:49:41.743 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6c51541b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:49:41.743 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722292_117.136.120.204_26660 -16:49:41.743 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@51fbe9bc[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 774] -16:49:41.743 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->25faeec0-a20a-4095-8fbf-51d80c4ace70 -16:49:41.743 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:49:41.743 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:49:41.744 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:49:41.744 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [25faeec0-a20a-4095-8fbf-51d80c4ace70] Server healthy check fail, currentConnection = 1726561722292_117.136.120.204_26660 -16:49:41.795 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -16:49:41.795 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -16:49:41.795 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -16:49:41.795 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -16:49:41.795 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -16:49:41.796 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -16:49:41.800 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:49:41.801 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:49:41.972 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:49:41.974 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:49:41.974 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:49:41.974 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:49:41.974 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a11905e0-eaf6-449b-b774-555c1afb2e0a -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@d7aae8c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1153] -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:49:41.975 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@44ce0496[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:49:41.976 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722292_117.136.120.204_26661 -16:49:41.976 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@100e2979[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 796] -16:49:41.976 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a11905e0-eaf6-449b-b774-555c1afb2e0a -16:49:41.976 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:49:41.977 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:49:41.977 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:49:41.979 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:49:42.781 [com.alibaba.nacos.client.Worker.19] INFO c.a.n.c.a.r.i.CredentialWatcher - [loadCredentialFromEnv,189] - null No credential found -16:49:51.987 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:50:12.164 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:50:14.720 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:50:14.720 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:50:14.775 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:50:15.671 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:50:16.504 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:50:17.262 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -16:50:17.760 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:50:17.761 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:50:17.829 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:50:18.283 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3b68a50c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -16:50:18.283 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@27c68ccb[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -16:50:18.283 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4ba88ab5[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -16:50:18.308 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -16:50:18.308 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -16:50:18.384 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:50:18.480 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -16:50:18.492 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:50:18.493 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:50:18.493 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:50:18.497 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:50:18.500 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -16:50:18.500 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -16:50:18.635 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f3902ffc-a782-4165-a3f8-442410c65b0b -16:50:18.637 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->f3902ffc-a782-4165-a3f8-442410c65b0b -16:50:18.637 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f3902ffc-a782-4165-a3f8-442410c65b0b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:50:18.637 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f3902ffc-a782-4165-a3f8-442410c65b0b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:50:18.638 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f3902ffc-a782-4165-a3f8-442410c65b0b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:50:18.638 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f3902ffc-a782-4165-a3f8-442410c65b0b] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:50:18.638 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:50:18.781 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f3902ffc-a782-4165-a3f8-442410c65b0b] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563020792_117.136.120.204_27009 -16:50:18.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f3902ffc-a782-4165-a3f8-442410c65b0b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:50:18.782 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f3902ffc-a782-4165-a3f8-442410c65b0b] Notify connected event to listeners. -16:50:18.782 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f3902ffc-a782-4165-a3f8-442410c65b0b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801138678 -16:50:18.782 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:50:18.783 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:50:18.837 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.245.139:9202 register finished -16:50:18.969 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 10.516 seconds (process running for 11.094) -16:50:18.976 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:50:18.976 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:50:18.977 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -16:50:18.982 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:50:18.982 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -16:50:18.982 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -16:50:18.982 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -16:50:18.983 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -16:50:18.983 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -16:50:18.983 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -16:50:18.983 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -16:50:19.509 [RMI TCP Connection(6)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:50:19.529 [RMI TCP Connection(7)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:50:20.014 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:50:20.015 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:50:20.016 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:50:20.020 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:50:20.022 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -16:50:20.023 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -16:50:20.140 [RMI TCP Connection(7)-192.168.245.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3c556b3b -16:50:20.143 [RMI TCP Connection(7)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:50:20.157 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a65416c3-fe13-4b8e-8310-1fe847b09f6a -16:50:20.158 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a65416c3-fe13-4b8e-8310-1fe847b09f6a -16:50:20.158 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65416c3-fe13-4b8e-8310-1fe847b09f6a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:50:20.159 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65416c3-fe13-4b8e-8310-1fe847b09f6a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:50:20.159 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65416c3-fe13-4b8e-8310-1fe847b09f6a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:50:20.159 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65416c3-fe13-4b8e-8310-1fe847b09f6a] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:50:20.159 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:50:20.301 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65416c3-fe13-4b8e-8310-1fe847b09f6a] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563022317_117.136.120.204_27010 -16:50:20.302 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65416c3-fe13-4b8e-8310-1fe847b09f6a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:50:20.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65416c3-fe13-4b8e-8310-1fe847b09f6a] Notify connected event to listeners. -16:50:20.302 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a65416c3-fe13-4b8e-8310-1fe847b09f6a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d2b60 -16:50:20.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:50:20.303 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:50:20.370 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.245.139:9300 register finished -16:50:20.480 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 6.889 seconds (process running for 7.597) -16:50:20.485 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:50:20.485 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:50:20.486 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -16:50:20.490 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -16:50:20.490 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -16:50:20.491 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -16:50:20.491 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:50:20.491 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -16:50:20.491 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -16:50:20.492 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -16:50:20.492 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -16:50:21.036 [RMI TCP Connection(3)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:53:24.546 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:53:24.546 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:53:24.587 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:53:24.587 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:53:24.587 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:53:24.587 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:53:24.587 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:53:24.587 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:53:24.587 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:53:24.587 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a65416c3-fe13-4b8e-8310-1fe847b09f6a -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6e966ec3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 61] -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@65ac6c79[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563022317_117.136.120.204_27010 -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5d22dde5[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 46] -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a65416c3-fe13-4b8e-8310-1fe847b09f6a -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:53:24.593 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:53:24.593 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -16:53:24.640 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -16:53:24.640 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -16:53:24.640 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -16:53:24.640 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -16:53:24.640 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -16:53:24.640 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -16:53:24.656 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:53:24.656 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f3902ffc-a782-4165-a3f8-442410c65b0b -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4faaf8ee[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 61] -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@56db1b87[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563020792_117.136.120.204_27009 -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@501d55e4[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 48] -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f3902ffc-a782-4165-a3f8-442410c65b0b -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:53:24.703 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:53:24.719 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:53:24.719 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -16:53:25.143 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -16:53:49.784 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:53:52.583 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:53:52.583 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:53:52.669 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:53:53.944 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:53:54.567 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:53:56.323 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -16:53:56.387 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:53:56.388 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:53:56.455 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:53:57.194 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:53:57.601 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5e1d6ace[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -16:53:57.602 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@221c097f[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -16:53:57.602 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7f3aa737[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -16:53:57.644 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -16:53:57.645 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -16:53:57.867 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -16:53:57.907 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:53:57.907 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:53:57.907 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:53:57.911 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:53:57.914 [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:57.914 [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:58.067 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554 -16:53:58.069 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554 -16:53:58.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:53:58.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:53:58.070 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:53:58.070 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:53:58.070 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:53:58.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563240296_117.136.120.204_27022 -16:53:58.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:53:58.313 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554] Notify connected event to listeners. -16:53:58.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801138440 -16:53:58.314 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:53:58.314 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:53:58.385 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.245.139:9202 register finished -16:53:58.499 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 12.418 seconds (process running for 12.929) -16:53:58.506 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:53:58.506 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:53:58.507 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -16:53:58.513 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:53:58.513 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -16:53:58.513 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -16:53:58.514 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -16:53:58.514 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -16:53:58.514 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -16:53:58.515 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -16:53:58.515 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -16:53:58.779 [RMI TCP Connection(4)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:53:58.800 [RMI TCP Connection(3)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -16:53:59.000 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:53:59.000 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:53:59.001 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:53:59.005 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:53:59.009 [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:59.009 [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:59.177 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c5aba741-fdec-41ff-ae59-6441678e6f10 -16:53:59.179 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->c5aba741-fdec-41ff-ae59-6441678e6f10 -16:53:59.179 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c5aba741-fdec-41ff-ae59-6441678e6f10] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:53:59.179 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c5aba741-fdec-41ff-ae59-6441678e6f10] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:53:59.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c5aba741-fdec-41ff-ae59-6441678e6f10] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:53:59.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c5aba741-fdec-41ff-ae59-6441678e6f10] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:53:59.180 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:53:59.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c5aba741-fdec-41ff-ae59-6441678e6f10] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563241357_117.136.120.204_27024 -16:53:59.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c5aba741-fdec-41ff-ae59-6441678e6f10] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:53:59.349 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c5aba741-fdec-41ff-ae59-6441678e6f10] Notify connected event to listeners. -16:53:59.350 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c5aba741-fdec-41ff-ae59-6441678e6f10] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d16e8 -16:53:59.350 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:53:59.350 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:53:59.409 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.245.139:9300 register finished -16:53:59.468 [RMI TCP Connection(3)-192.168.245.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@73cab952 -16:53:59.476 [RMI TCP Connection(3)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -16:53:59.525 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 8.481 seconds (process running for 9.047) -16:53:59.532 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:53:59.533 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:53:59.533 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -16:53:59.538 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -16:53:59.538 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -16:53:59.539 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -16:53:59.539 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:53:59.539 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -16:53:59.539 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -16:53:59.539 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -16:53:59.539 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -16:53:59.691 [RMI TCP Connection(4)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:50:59.208 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:50:59.209 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:50:59.280 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:50:59.281 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c5aba741-fdec-41ff-ae59-6441678e6f10 -17:50:59.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@cb9dac6[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1136] -17:50:59.283 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:50:59.283 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6de95069[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:50:59.283 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563241357_117.136.120.204_27024 -17:50:59.285 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2b68ecd5[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 682] -17:50:59.285 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c5aba741-fdec-41ff-ae59-6441678e6f10 -17:50:59.285 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:50:59.286 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:50:59.286 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:50:59.298 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -17:50:59.330 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -17:50:59.330 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -17:50:59.330 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -17:50:59.330 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -17:50:59.331 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -17:50:59.331 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -17:50:59.337 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:50:59.337 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:50:59.416 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:50:59.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:50:59.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:50:59.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:50:59.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:50:59.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:50:59.418 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:50:59.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:50:59.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:50:59.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:50:59.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:50:59.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:50:59.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554 -17:50:59.419 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@142062d5[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1137] -17:50:59.419 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:50:59.420 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5b9d66e1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:50:59.420 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563240296_117.136.120.204_27022 -17:50:59.423 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@356f5ce4[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 679] -17:50:59.423 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->0e7b1e8f-5de0-4757-8ce4-98e2bcb9f554 -17:50:59.424 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:50:59.424 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:50:59.424 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:50:59.428 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -17:51:02.985 [com.alibaba.nacos.client.Worker.6] INFO c.a.n.c.a.r.i.CredentialWatcher - [loadCredentialFromEnv,189] - null No credential found -17:51:09.437 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -17:51:25.279 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:51:28.038 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:51:28.038 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:51:28.115 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:51:29.412 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:51:30.268 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:51:31.952 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -17:51:32.117 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:51:32.117 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:51:32.184 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:51:32.821 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:51:33.114 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@757501da[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -17:51:33.114 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2b1aa390[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -17:51:33.115 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5e1d6ace[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -17:51:33.174 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -17:51:33.175 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -17:51:33.406 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -17:51:33.443 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -17:51:33.444 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -17:51:33.444 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -17:51:33.449 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -17:51:33.452 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -17:51:33.452 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -17:51:33.614 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 58f0c061-0b61-4591-931c-8f2844afc8b4 -17:51:33.615 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->58f0c061-0b61-4591-931c-8f2844afc8b4 -17:51:33.616 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58f0c061-0b61-4591-931c-8f2844afc8b4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:51:33.616 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58f0c061-0b61-4591-931c-8f2844afc8b4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:51:33.616 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58f0c061-0b61-4591-931c-8f2844afc8b4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:51:33.617 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58f0c061-0b61-4591-931c-8f2844afc8b4] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -17:51:33.617 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -17:51:33.842 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58f0c061-0b61-4591-931c-8f2844afc8b4] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726566695832_117.136.120.204_27372 -17:51:33.843 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58f0c061-0b61-4591-931c-8f2844afc8b4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:51:33.843 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58f0c061-0b61-4591-931c-8f2844afc8b4] Notify connected event to listeners. -17:51:33.843 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [58f0c061-0b61-4591-931c-8f2844afc8b4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801136a20 -17:51:33.843 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -17:51:33.844 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -17:51:33.907 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.245.139:9202 register finished -17:51:34.033 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 12.576 seconds (process running for 13.106) -17:51:34.042 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -17:51:34.042 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -17:51:34.043 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -17:51:34.049 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -17:51:34.050 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -17:51:34.051 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -17:51:34.051 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -17:51:34.051 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -17:51:34.051 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -17:51:34.051 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -17:51:34.052 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -17:51:34.587 [RMI TCP Connection(4)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:51:34.606 [RMI TCP Connection(5)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -17:51:34.644 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -17:51:34.644 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -17:51:34.644 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -17:51:34.648 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -17:51:34.651 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -17:51:34.651 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -17:51:34.820 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 622aaaf3-239c-4f16-8419-3a96548d303b -17:51:34.822 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->622aaaf3-239c-4f16-8419-3a96548d303b -17:51:34.826 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [622aaaf3-239c-4f16-8419-3a96548d303b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:51:34.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [622aaaf3-239c-4f16-8419-3a96548d303b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:51:34.828 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [622aaaf3-239c-4f16-8419-3a96548d303b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:51:34.829 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [622aaaf3-239c-4f16-8419-3a96548d303b] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -17:51:34.829 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -17:51:35.102 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [622aaaf3-239c-4f16-8419-3a96548d303b] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726566697056_117.136.120.204_27374 -17:51:35.102 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [622aaaf3-239c-4f16-8419-3a96548d303b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:51:35.102 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [622aaaf3-239c-4f16-8419-3a96548d303b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010e1928 -17:51:35.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [622aaaf3-239c-4f16-8419-3a96548d303b] Notify connected event to listeners. -17:51:35.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -17:51:35.104 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -17:51:35.146 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 192.168.245.139:9300 register finished -17:51:35.257 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 8.597 seconds (process running for 9.244) -17:51:35.264 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -17:51:35.264 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -17:51:35.265 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -17:51:35.269 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -17:51:35.270 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -17:51:35.270 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -17:51:35.270 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -17:51:35.271 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -17:51:35.271 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -17:51:35.271 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -17:51:35.271 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -17:51:35.350 [RMI TCP Connection(5)-192.168.245.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1de7a1e6 -17:51:35.359 [RMI TCP Connection(5)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -17:51:35.697 [RMI TCP Connection(5)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:56:07.264 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:56:40.355 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:57:13.400 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:57:46.441 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:58:19.553 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:58:29.705 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:58:29.705 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='192.168.245.139', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:58:29.756 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:58:29.757 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->622aaaf3-239c-4f16-8419-3a96548d303b -17:58:29.758 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5b1ef5aa[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 137] -17:58:29.759 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:58:29.759 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@573f8b07[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:58:29.759 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726566697056_117.136.120.204_27374 -17:58:29.760 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7357a6e1[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 93] -17:58:29.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->622aaaf3-239c-4f16-8419-3a96548d303b -17:58:29.761 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:58:29.761 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:58:29.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:58:34.474 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -17:58:37.560 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -17:58:37.561 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -17:58:37.561 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -17:58:37.561 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -17:58:37.562 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -17:58:37.562 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -17:58:37.568 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:58:37.569 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:58:37.669 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:58:37.669 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->58f0c061-0b61-4591-931c-8f2844afc8b4 -17:58:37.670 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1b8d0e5c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 140] -17:58:37.671 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:58:37.671 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@79960a3a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:58:37.671 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726566695832_117.136.120.204_27372 -17:58:37.673 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5fc19696[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 93] -17:58:37.673 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->58f0c061-0b61-4591-931c-8f2844afc8b4 -17:58:37.673 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:58:37.673 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:58:37.674 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:58:37.675 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -17:58:38.164 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -18:46:40.923 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -18:46:43.690 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:46:43.690 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -18:46:43.775 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:46:45.020 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -18:46:45.167 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -18:46:46.991 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:46:46.991 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -18:46:47.069 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:46:47.769 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -18:46:48.022 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -18:46:49.553 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@557635ca[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -18:46:49.554 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1c298769[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -18:46:49.554 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4cb1af3f[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -18:46:49.888 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -18:46:49.905 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -18:46:49.905 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -18:46:49.905 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -18:46:49.912 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -18:46:49.917 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -18:46:49.917 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -18:46:50.109 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 169a076d-57b5-49cf-bbea-1654343d6973 -18:46:50.111 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->169a076d-57b5-49cf-bbea-1654343d6973 -18:46:50.111 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [169a076d-57b5-49cf-bbea-1654343d6973] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:46:50.112 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [169a076d-57b5-49cf-bbea-1654343d6973] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:46:50.112 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [169a076d-57b5-49cf-bbea-1654343d6973] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:46:50.112 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [169a076d-57b5-49cf-bbea-1654343d6973] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -18:46:50.113 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -18:46:50.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [169a076d-57b5-49cf-bbea-1654343d6973] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726570012942_117.143.60.138_58870 -18:46:50.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [169a076d-57b5-49cf-bbea-1654343d6973] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:46:50.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [169a076d-57b5-49cf-bbea-1654343d6973] Notify connected event to listeners. -18:46:50.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [169a076d-57b5-49cf-bbea-1654343d6973] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801136e68 -18:46:50.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -18:46:50.565 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -18:46:50.630 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 10.113.37.39:9202 register finished -18:46:50.845 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 14.988 seconds (process running for 15.547) -18:46:50.860 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -18:46:50.860 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -18:46:50.862 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -18:46:50.873 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -18:46:50.874 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -18:46:50.874 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -18:46:50.874 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -18:46:50.875 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -18:46:50.875 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -18:46:50.876 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -18:46:50.876 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -18:46:50.963 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -18:46:50.963 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -18:46:50.964 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -18:46:50.968 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -18:46:50.972 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -18:46:50.972 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -18:46:51.084 [RMI TCP Connection(7)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -18:46:51.110 [RMI TCP Connection(8)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -18:46:51.157 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 64f9d973-1c6b-4468-b970-68b70a5cafbf -18:46:51.159 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->64f9d973-1c6b-4468-b970-68b70a5cafbf -18:46:51.159 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64f9d973-1c6b-4468-b970-68b70a5cafbf] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:46:51.159 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64f9d973-1c6b-4468-b970-68b70a5cafbf] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:46:51.160 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64f9d973-1c6b-4468-b970-68b70a5cafbf] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:46:51.160 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64f9d973-1c6b-4468-b970-68b70a5cafbf] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -18:46:51.161 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -18:46:51.391 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64f9d973-1c6b-4468-b970-68b70a5cafbf] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726570013903_117.143.60.138_58884 -18:46:51.391 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64f9d973-1c6b-4468-b970-68b70a5cafbf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:46:51.391 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64f9d973-1c6b-4468-b970-68b70a5cafbf] Notify connected event to listeners. -18:46:51.391 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64f9d973-1c6b-4468-b970-68b70a5cafbf] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d2150 -18:46:51.392 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -18:46:51.392 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -18:46:51.436 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.39:9300 register finished -18:46:51.661 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 10.788 seconds (process running for 11.516) -18:46:51.672 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -18:46:51.672 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -18:46:51.673 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -18:46:51.680 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -18:46:51.681 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -18:46:51.682 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -18:46:51.682 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -18:46:51.683 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -18:46:51.683 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -18:46:51.683 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -18:46:51.684 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -18:46:51.714 [RMI TCP Connection(8)-10.113.37.39] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1631964d -18:46:51.731 [RMI TCP Connection(8)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -18:46:52.086 [RMI TCP Connection(8)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:04:05.097 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:04:05.098 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:04:05.183 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -19:04:05.213 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:04:05.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:04:05.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:04:05.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:04:05.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:04:05.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:04:05.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:04:05.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:04:05.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:04:05.215 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:04:05.215 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:04:05.215 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:04:05.215 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->64f9d973-1c6b-4468-b970-68b70a5cafbf -19:04:05.215 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1132927d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 343] -19:04:05.215 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:04:05.215 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2b6cbe7c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:04:05.215 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726570013903_117.143.60.138_58884 -19:04:05.217 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4a1fc975[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 217] -19:04:05.217 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->64f9d973-1c6b-4468-b970-68b70a5cafbf -19:04:05.218 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:04:05.218 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:04:05.220 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:04:05.264 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -19:04:05.264 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -19:04:05.264 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -19:04:05.264 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -19:04:05.264 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -19:04:05.265 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -19:04:05.271 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:04:05.272 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:04:05.334 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:04:05.335 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:04:05.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:04:05.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:04:05.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:04:05.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:04:05.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:04:05.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:04:05.336 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:04:05.337 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:04:05.337 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:04:05.337 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:04:05.337 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->169a076d-57b5-49cf-bbea-1654343d6973 -19:04:05.337 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@14c7334d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 344] -19:04:05.337 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:04:05.337 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6c4a5d43[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:04:05.337 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726570012942_117.143.60.138_58870 -19:04:05.340 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4ece4d55[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 211] -19:04:05.340 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->169a076d-57b5-49cf-bbea-1654343d6973 -19:04:05.340 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:04:05.340 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:04:05.341 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:04:05.343 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -19:04:05.799 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -19:04:26.732 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:04:29.446 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:04:29.447 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:04:29.541 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:04:30.666 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:04:30.799 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:04:32.639 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:04:32.640 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:04:32.717 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:04:33.299 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -19:04:33.580 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:04:34.886 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@294a150c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -19:04:34.886 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2fef413c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -19:04:34.887 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4a0b1701[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -19:04:34.929 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -19:04:34.929 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -19:04:35.208 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -19:04:35.243 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:04:35.243 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:04:35.244 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:04:35.252 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:04:35.258 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:04:35.258 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:04:35.412 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e636fb57-9409-4532-bf0c-8d2848ee3bf7 -19:04:35.414 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->e636fb57-9409-4532-bf0c-8d2848ee3bf7 -19:04:35.414 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:04:35.414 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:04:35.415 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:04:35.416 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:04:35.416 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:04:35.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726571078116_117.143.60.138_61338 -19:04:35.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:04:35.515 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801135c28 -19:04:35.515 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Notify connected event to listeners. -19:04:35.515 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:04:35.516 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:04:35.545 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 10.113.37.39:9202 register finished -19:04:35.735 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 13.081 seconds (process running for 13.695) -19:04:35.747 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:04:35.747 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:04:35.749 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -19:04:35.757 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:04:35.757 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -19:04:35.758 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -19:04:35.758 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -19:04:35.759 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -19:04:35.759 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -19:04:35.759 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -19:04:35.760 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -19:04:35.911 [RMI TCP Connection(2)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:04:35.943 [RMI TCP Connection(3)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:04:36.323 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:04:36.324 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:04:36.324 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:04:36.328 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:04:36.332 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:04:36.333 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:04:36.477 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 3e35a7a2-486d-4d7f-a008-178a97c9a249 -19:04:36.478 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->3e35a7a2-486d-4d7f-a008-178a97c9a249 -19:04:36.479 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:04:36.479 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:04:36.479 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:04:36.480 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:04:36.480 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:04:36.534 [RMI TCP Connection(3)-10.113.37.39] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@471475b2 -19:04:36.544 [RMI TCP Connection(3)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -19:04:36.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726571079183_117.143.60.138_61350 -19:04:36.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:04:36.652 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d2150 -19:04:36.652 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Notify connected event to listeners. -19:04:36.652 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:04:36.654 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:04:36.788 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.39:9300 register finished -19:04:37.013 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 9.583 seconds (process running for 10.185) -19:04:37.021 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:04:37.021 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:04:37.021 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -19:04:37.028 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -19:04:37.029 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -19:04:37.029 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -19:04:37.029 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:04:37.029 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -19:04:37.030 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -19:04:37.030 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -19:04:37.030 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -19:04:37.539 [RMI TCP Connection(6)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:18:39.317 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:19:12.363 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:19:45.399 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:20:18.450 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:20:51.484 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:21:24.506 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:21:57.546 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:22:30.569 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:23:03.607 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:23:36.635 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:24:09.665 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:24:42.699 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:25:15.870 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:25:48.896 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:26:22.094 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:26:55.276 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:27:20.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Server healthy check fail, currentConnection = 1726571072656_117.143.60.138_61311 -19:27:20.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:27:20.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:23.879 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:26.909 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:27.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:27.571 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Server check success, currentServer is 47.116.173.119:8848 -19:27:30.130 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:30.444 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:32.820 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Server healthy check fail, currentConnection = 1726571079183_117.143.60.138_61350 -19:27:32.822 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:27:32.823 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:33.456 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:33.868 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:34.812 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572456769_117.143.60.138_64573 -19:27:34.812 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571072656_117.143.60.138_61311 -19:27:34.812 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571072656_117.143.60.138_61311 -19:27:34.813 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Notify disconnected event to listeners -19:27:34.813 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] DisConnected,clear listen context... -19:27:34.813 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Notify connected event to listeners. -19:27:34.813 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Connected,notify listen context... -19:27:35.955 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:36.822 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Server healthy check fail, currentConnection = 1726571068110_117.143.60.138_61298 -19:27:36.822 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:27:36.822 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:38.967 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:39.188 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:39.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:41.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Success to connect a server [47.116.173.119:8848], connectionId = 1726572462155_117.143.60.138_64587 -19:27:41.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571079183_117.143.60.138_61350 -19:27:41.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571079183_117.143.60.138_61350 -19:27:41.404 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Notify disconnected event to listeners -19:27:41.405 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Notify connected event to listeners. -19:27:41.405 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:27:42.971 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:42.984 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Server check success, currentServer is 47.116.173.119:8848 -19:27:43.096 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file -19:27:43.187 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:46.192 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:46.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:49.526 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:49.942 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:52.963 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:53.472 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:55.452 [nacos-grpc-client-executor-47.116.173.119-302] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 14482 -19:27:55.452 [nacos-grpc-client-executor-47.116.173.119-302] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 14482 -19:27:56.500 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:57.106 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:00.116 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:00.451 [nacos-grpc-client-executor-47.116.173.119-307] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1726571068110_117.143.60.138_61298]Ignore complete event,isRunning:false,isAbandon=false -19:28:00.829 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:01.384 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:28:03.835 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:03.963 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Server healthy check fail, currentConnection = 1726571078116_117.143.60.138_61338 -19:28:03.963 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:28:03.963 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:04.647 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:07.105 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:07.650 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:08.561 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:09.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Success to connect a server [47.116.173.119:8848], connectionId = 1726572490005_117.143.60.138_64672 -19:28:09.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571078116_117.143.60.138_61338 -19:28:09.888 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571078116_117.143.60.138_61338 -19:28:09.888 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Notify disconnected event to listeners -19:28:09.888 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Notify connected event to listeners. -19:28:09.888 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:28:10.889 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Server check success, currentServer is 47.116.173.119:8848 -19:28:11.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:12.023 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gen -19:28:12.588 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:15.612 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:16.728 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:19.754 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:20.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:23.984 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:25.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:26.371 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572508672_117.143.60.138_64722 -19:28:26.371 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571068110_117.143.60.138_61298 -19:28:26.371 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571068110_117.143.60.138_61298 -19:28:26.371 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Notify disconnected event to listeners -19:28:26.371 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] DisConnected,clear listen context... -19:28:26.371 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Notify connected event to listeners. -19:28:26.371 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [dbab502d-a8a2-49af-8b0d-6c7bdcfc1bec_config-0] Connected,notify listen context... -19:28:34.395 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:29:06.175 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Server healthy check fail, currentConnection = 1726572456769_117.143.60.138_64573 -19:29:06.175 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:29:06.175 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:06.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:29:06.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:07.559 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:29:08.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Server healthy check fail, currentConnection = 1726572462155_117.143.60.138_64587 -19:29:08.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:29:08.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.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:09.296 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:10.112 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:11.265 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:12.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572553271_117.143.60.138_64836 -19:29:12.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572456769_117.143.60.138_64573 -19:29:12.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572456769_117.143.60.138_64573 -19:29:12.721 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Notify disconnected event to listeners -19:29:12.721 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] DisConnected,clear listen context... -19:29:12.721 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Notify connected event to listeners. -19:29:12.721 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [37da99a2-8f24-4370-b5c6-ece8a1fbc4ba_config-0] Connected,notify listen context... -19:29:13.126 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:29:13.341 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:14.280 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:29:14.496 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:16.355 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:29:16.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Success to connect a server [47.116.173.119:8848], connectionId = 1726572558391_117.143.60.138_64849 -19:29:16.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572462155_117.143.60.138_64587 -19:29:16.400 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572462155_117.143.60.138_64587 -19:29:16.400 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Notify disconnected event to listeners -19:29:16.400 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Notify connected event to listeners. -19:29:16.400 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:29:16.668 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:16.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Server check success, currentServer is 47.116.173.119:8848 -19:29:17.624 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file -19:29:18.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Success to connect a server [47.116.173.119:8848], connectionId = 1726572559575_117.143.60.138_64854 -19:29:18.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572490005_117.143.60.138_64672 -19:29:18.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572490005_117.143.60.138_64672 -19:29:18.617 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Notify disconnected event to listeners -19:29:18.618 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Notify connected event to listeners. -19:29:18.618 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:29:19.133 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gen -19:29:41.718 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:30:14.994 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:30:31.106 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Server healthy check fail, currentConnection = 1726572558391_117.143.60.138_64849 -19:30:31.106 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:30:31.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:35.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Success to connect a server [47.116.173.119:8848], connectionId = 1726572635670_117.143.60.138_65072 -19:30:35.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572558391_117.143.60.138_64849 -19:30:35.437 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572558391_117.143.60.138_64849 -19:30:35.437 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Notify disconnected event to listeners -19:30:35.437 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Notify connected event to listeners. -19:30:35.437 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:30:35.645 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Server check success, currentServer is 47.116.173.119:8848 -19:30:36.470 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file -19:30:48.166 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:30:50.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Server healthy check fail, currentConnection = 1726572559575_117.143.60.138_64854 -19:30:50.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:30:50.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:53.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:56.658 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:30:56.873 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:59.886 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:31:00.195 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:04.335 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Success to connect a server [47.116.173.119:8848], connectionId = 1726572664194_117.143.60.138_65155 -19:31:04.335 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572559575_117.143.60.138_64854 -19:31:04.335 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572559575_117.143.60.138_64854 -19:31:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Notify disconnected event to listeners -19:31:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Notify connected event to listeners. -19:31:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:31:05.119 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gen -19:31:06.662 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Server check success, currentServer is 47.116.173.119:8848 -19:31:07.228 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:31:07.228 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:31:07.352 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -19:31:08.706 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:31:08.707 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:31:08.708 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:31:08.708 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:31:08.708 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:31:08.708 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:31:08.709 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:31:08.709 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:31:08.709 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:31:08.709 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:31:08.709 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:31:08.709 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:31:08.709 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->3e35a7a2-486d-4d7f-a008-178a97c9a249 -19:31:08.710 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7a6a0d87[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 528] -19:31:08.710 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:31:08.710 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3729f71e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:31:08.710 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572635670_117.143.60.138_65072 -19:31:08.711 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@163c2b0f[Running, pool size = 3, active threads = 1, queued tasks = 0, completed tasks = 370] -19:31:08.711 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->3e35a7a2-486d-4d7f-a008-178a97c9a249 -19:31:08.711 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:31:08.711 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:31:08.712 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:31:08.713 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3e35a7a2-486d-4d7f-a008-178a97c9a249] Server healthy check fail, currentConnection = 1726572635670_117.143.60.138_65072 -19:31:11.528 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -19:31:11.529 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -19:31:11.529 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -19:31:11.529 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -19:31:11.529 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -19:31:11.530 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -19:31:11.542 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:31:11.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:31:11.671 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:31:11.672 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:31:11.672 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:31:11.673 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:31:11.673 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:31:11.673 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:31:11.673 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:31:11.673 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:31:11.673 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:31:11.674 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:31:11.674 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:31:11.674 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:31:11.674 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->e636fb57-9409-4532-bf0c-8d2848ee3bf7 -19:31:11.674 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@75c3a314[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 529] -19:31:11.674 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:31:11.675 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@102eef3c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:31:11.675 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572664194_117.143.60.138_65155 -19:31:11.675 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3c95b9b5[Running, pool size = 14, active threads = 0, queued tasks = 0, completed tasks = 365] -19:31:11.675 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->e636fb57-9409-4532-bf0c-8d2848ee3bf7 -19:31:11.676 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:31:11.676 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:31:11.677 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:31:11.678 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e636fb57-9409-4532-bf0c-8d2848ee3bf7] Server healthy check fail, currentConnection = 1726572664194_117.143.60.138_65155 -19:31:11.680 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -19:31:16.502 [com.alibaba.nacos.client.Worker.12] INFO c.a.n.c.a.r.i.CredentialWatcher - [loadCredentialFromEnv,189] - null No credential found -19:31:30.803 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -19:31:35.621 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:31:36.813 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [16ec7d2c-8e88-4ce0-9521-d9366f63c475_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:31:37.398 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:31:37.399 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:31:37.495 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:31:38.397 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:31:41.621 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:31:41.622 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:31:41.622 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:31:41.626 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:31:41.628 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:31:41.628 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:31:41.885 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6712fd71-9cfc-472d-8e79-5d2361aec188 -19:31:41.887 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->6712fd71-9cfc-472d-8e79-5d2361aec188 -19:31:41.887 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:31:41.887 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:31:41.887 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:31:41.888 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:41.888 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:44.896 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:44.897 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:47.908 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:47.908 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:50.910 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:50.911 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:51.506 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:31:51.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [018870e7-aea9-47c2-a643-64265760eb1b_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:31:53.266 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572714425_117.143.60.138_65372 -19:31:53.266 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:31:53.266 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Notify connected event to listeners. -19:31:53.266 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d5130 -19:31:53.266 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:31:53.267 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:31:53.461 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:31:53.462 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:31:53.466 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.39:9300 register finished -19:31:53.527 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:31:53.629 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 31.304 seconds (process running for 31.828) -19:31:53.636 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:31:53.636 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:31:53.637 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -19:31:53.643 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -19:31:53.643 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -19:31:53.644 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -19:31:53.645 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:31:53.645 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -19:31:53.645 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -19:31:53.645 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -19:31:53.645 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -19:31:54.060 [RMI TCP Connection(12)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:31:54.431 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:31:56.167 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -19:31:57.321 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4d162d67[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -19:31:57.321 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@757501da[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -19:31:57.321 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2b1aa390[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -19:31:57.625 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -19:31:57.639 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:31:57.639 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:31:57.639 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:31:57.644 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:31:57.647 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:31:57.647 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:32:00.639 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:32:34.897 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:32:47.654 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 756a3914-7593-4664-8137-802876e2984c -19:32:47.655 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->756a3914-7593-4664-8137-802876e2984c -19:32:47.655 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [756a3914-7593-4664-8137-802876e2984c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:32:47.655 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [756a3914-7593-4664-8137-802876e2984c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:32:47.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [756a3914-7593-4664-8137-802876e2984c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:32:47.656 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [756a3914-7593-4664-8137-802876e2984c] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:32:47.656 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:32:50.102 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [756a3914-7593-4664-8137-802876e2984c] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572770622_117.143.60.138_49180 -19:32:50.102 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [756a3914-7593-4664-8137-802876e2984c] Notify connected event to listeners. -19:32:50.102 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [756a3914-7593-4664-8137-802876e2984c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:32:50.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:32:50.103 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [756a3914-7593-4664-8137-802876e2984c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x00000008011367e0 -19:32:50.104 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:32:50.658 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gen -19:32:51.402 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 10.113.37.39:9202 register finished -19:32:51.502 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 69.366 seconds (process running for 69.845) -19:32:51.509 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:32:51.509 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:32:51.510 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -19:32:51.514 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:32:51.514 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -19:32:51.515 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -19:32:51.515 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -19:32:51.515 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -19:32:51.515 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -19:32:51.515 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -19:32:51.515 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -19:32:51.833 [RMI TCP Connection(20)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:32:51.834 [RMI TCP Connection(18)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:32:58.498 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:32:58.498 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:32:58.589 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -19:32:58.689 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:32:58.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:32:58.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:32:58.690 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:32:58.691 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:32:58.691 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:32:58.691 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:32:58.691 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->6712fd71-9cfc-472d-8e79-5d2361aec188 -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5f806ade[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 25] -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1072fae7[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:32:58.692 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572714425_117.143.60.138_65372 -19:32:58.693 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@22abe91e[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 33] -19:32:58.693 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->6712fd71-9cfc-472d-8e79-5d2361aec188 -19:32:58.693 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:32:58.693 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:32:58.694 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6712fd71-9cfc-472d-8e79-5d2361aec188] Notify disconnected event to listeners -19:32:58.694 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:33:01.783 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -19:33:01.783 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -19:33:01.783 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -19:33:01.783 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -19:33:01.784 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -19:33:01.784 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -19:33:01.791 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:33:01.791 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:33:01.925 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:33:01.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:33:01.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:33:01.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:33:01.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:33:01.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:33:01.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:33:01.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:33:01.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:33:01.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:33:01.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:33:01.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:33:01.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->756a3914-7593-4664-8137-802876e2984c -19:33:01.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@766c8861[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 4] -19:33:01.928 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:33:01.928 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@60d61aa1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:33:01.928 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572770622_117.143.60.138_49180 -19:33:01.931 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@71b42a67[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 10] -19:33:01.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->756a3914-7593-4664-8137-802876e2984c -19:33:01.932 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:33:01.932 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:33:01.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:36:22.827 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:36:25.315 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:36:25.315 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:36:25.394 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:36:26.010 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:36:26.801 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:36:27.785 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:36:27.785 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:36:27.858 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:36:28.798 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:36:29.428 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -19:36:30.814 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@dcf495c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -19:36:30.815 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@60610a2b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -19:36:30.815 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@420dee82[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -19:36:31.131 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -19:36:31.170 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:36:31.171 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:36:31.171 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:36:31.178 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:36:31.184 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:36:31.184 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:36:31.305 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of caa2b271-0d09-4c41-bb38-2a557edc3987 -19:36:31.308 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->caa2b271-0d09-4c41-bb38-2a557edc3987 -19:36:31.309 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [caa2b271-0d09-4c41-bb38-2a557edc3987] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:36:31.309 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [caa2b271-0d09-4c41-bb38-2a557edc3987] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:36:31.310 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [caa2b271-0d09-4c41-bb38-2a557edc3987] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:36:31.311 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [caa2b271-0d09-4c41-bb38-2a557edc3987] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:36:31.312 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:36:31.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [caa2b271-0d09-4c41-bb38-2a557edc3987] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572994009_117.143.60.138_49730 -19:36:31.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [caa2b271-0d09-4c41-bb38-2a557edc3987] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:36:31.378 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [caa2b271-0d09-4c41-bb38-2a557edc3987] Notify connected event to listeners. -19:36:31.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [caa2b271-0d09-4c41-bb38-2a557edc3987] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801138228 -19:36:31.378 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:36:31.380 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:36:31.448 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 10.113.37.39:9202 register finished -19:36:31.614 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:36:31.614 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:36:31.615 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:36:31.618 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:36:31.621 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:36:31.622 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:36:31.646 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 13.243 seconds (process running for 13.751) -19:36:31.654 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:36:31.654 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:36:31.655 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -19:36:31.662 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:36:31.662 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -19:36:31.663 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -19:36:31.663 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -19:36:31.664 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -19:36:31.664 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -19:36:31.664 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -19:36:31.664 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -19:36:31.723 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2b781847-8e60-4e1e-99d0-b5f463fba389 -19:36:31.724 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->2b781847-8e60-4e1e-99d0-b5f463fba389 -19:36:31.724 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b781847-8e60-4e1e-99d0-b5f463fba389] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:36:31.725 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b781847-8e60-4e1e-99d0-b5f463fba389] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:36:31.725 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b781847-8e60-4e1e-99d0-b5f463fba389] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:36:31.725 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b781847-8e60-4e1e-99d0-b5f463fba389] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:36:31.725 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:36:31.905 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b781847-8e60-4e1e-99d0-b5f463fba389] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572994455_117.143.60.138_49731 -19:36:31.905 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b781847-8e60-4e1e-99d0-b5f463fba389] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:36:31.905 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b781847-8e60-4e1e-99d0-b5f463fba389] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d10a0 -19:36:31.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b781847-8e60-4e1e-99d0-b5f463fba389] Notify connected event to listeners. -19:36:31.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:36:31.906 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:36:31.936 [RMI TCP Connection(5)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:36:31.955 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.39:9300 register finished -19:36:31.961 [RMI TCP Connection(4)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:36:32.108 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 9.249 seconds (process running for 9.906) -19:36:32.115 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:36:32.116 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:36:32.116 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -19:36:32.122 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -19:36:32.122 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -19:36:32.123 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -19:36:32.123 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:36:32.123 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -19:36:32.123 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -19:36:32.123 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -19:36:32.123 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -19:36:32.224 [RMI TCP Connection(3)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:36:34.165 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:36:40.684 [http-nio-9202-exec-1] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:36:58.532 [http-nio-9202-exec-4] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:37:07.193 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:37:18.525 [http-nio-9202-exec-5] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:37:38.534 [http-nio-9202-exec-6] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:37:40.273 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:37:58.526 [http-nio-9202-exec-7] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:38:13.301 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:38:15.262 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:38:15.262 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:38:15.281 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:38:15.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:38:15.282 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->2b781847-8e60-4e1e-99d0-b5f463fba389 -19:38:15.283 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@28447086[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 34] -19:38:15.284 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:38:15.284 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3fbce20b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:38:15.284 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572994455_117.143.60.138_49731 -19:38:15.286 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@42c78771[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 30] -19:38:15.287 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->2b781847-8e60-4e1e-99d0-b5f463fba389 -19:38:15.287 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:38:15.287 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:38:15.287 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:38:15.354 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -19:38:18.384 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -19:38:18.385 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -19:38:18.386 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -19:38:18.386 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -19:38:18.387 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -19:38:18.387 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -19:38:18.396 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:38:18.396 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:38:18.461 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:38:18.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:38:18.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:38:18.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:38:18.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:38:18.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:38:18.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->caa2b271-0d09-4c41-bb38-2a557edc3987 -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@a12a536[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 35] -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@57db924f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:38:18.463 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572994009_117.143.60.138_49730 -19:38:18.465 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7f5616cf[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 34] -19:38:18.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->caa2b271-0d09-4c41-bb38-2a557edc3987 -19:38:18.466 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:38:18.466 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:38:18.467 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:56:29.495 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:56:31.938 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:56:31.939 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:56:32.010 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:56:32.615 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:56:33.145 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:56:34.317 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:56:34.317 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:56:34.426 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:56:35.363 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:56:35.667 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -19:56:37.320 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5d6e77a4[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -19:56:37.321 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5bf9bb2[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -19:56:37.321 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@76c5599b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -19:56:37.604 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -19:56:37.653 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:56:37.653 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:56:37.654 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:56:37.658 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:56:37.662 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:56:37.662 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:56:38.077 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c64073ce-cda1-47a7-b5cd-1f009af8ed38 -19:56:38.079 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->c64073ce-cda1-47a7-b5cd-1f009af8ed38 -19:56:38.079 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c64073ce-cda1-47a7-b5cd-1f009af8ed38] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:56:38.079 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c64073ce-cda1-47a7-b5cd-1f009af8ed38] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:56:38.080 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c64073ce-cda1-47a7-b5cd-1f009af8ed38] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:56:38.081 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c64073ce-cda1-47a7-b5cd-1f009af8ed38] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:56:38.081 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:56:38.248 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:56:38.249 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:56:38.249 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:56:38.255 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:56:38.260 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:56:38.261 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:56:38.425 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 780a534d-0290-437f-8480-fefd64b3c2ba -19:56:38.427 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->780a534d-0290-437f-8480-fefd64b3c2ba -19:56:38.427 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [780a534d-0290-437f-8480-fefd64b3c2ba] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:56:38.428 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [780a534d-0290-437f-8480-fefd64b3c2ba] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:56:38.428 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [780a534d-0290-437f-8480-fefd64b3c2ba] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:56:38.428 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [780a534d-0290-437f-8480-fefd64b3c2ba] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:56:38.428 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:56:38.951 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [780a534d-0290-437f-8480-fefd64b3c2ba] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726574201277_117.143.60.138_50997 -19:56:38.952 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [780a534d-0290-437f-8480-fefd64b3c2ba] Notify connected event to listeners. -19:56:38.952 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [780a534d-0290-437f-8480-fefd64b3c2ba] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:56:38.952 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:56:38.952 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [780a534d-0290-437f-8480-fefd64b3c2ba] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d16e8 -19:56:38.953 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:56:39.131 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c64073ce-cda1-47a7-b5cd-1f009af8ed38] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726574201429_117.143.60.138_50995 -19:56:39.132 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c64073ce-cda1-47a7-b5cd-1f009af8ed38] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:56:39.132 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c64073ce-cda1-47a7-b5cd-1f009af8ed38] Notify connected event to listeners. -19:56:39.132 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c64073ce-cda1-47a7-b5cd-1f009af8ed38] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x00000008011378e0 -19:56:39.132 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:56:39.133 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:56:39.145 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.39:9300 register finished -19:56:39.318 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 14.222 seconds (process running for 14.719) -19:56:39.327 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:56:39.327 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:56:39.327 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -19:56:39.333 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -19:56:39.333 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -19:56:39.334 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -19:56:39.334 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:56:39.335 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -19:56:39.335 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -19:56:39.335 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -19:56:39.335 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -19:56:39.650 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 10.113.37.39:9202 register finished -19:56:39.665 [RMI TCP Connection(2)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:56:39.809 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 18.789 seconds (process running for 19.391) -19:56:39.819 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:56:39.819 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:56:39.820 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -19:56:39.827 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:56:39.827 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -19:56:39.827 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -19:56:39.828 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -19:56:39.828 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -19:56:39.828 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -19:56:39.829 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -19:56:39.829 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -19:56:40.140 [RMI TCP Connection(5)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:56:40.164 [RMI TCP Connection(4)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -19:56:40.763 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:56:44.471 [RMI TCP Connection(4)-10.113.37.39] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6e02e5e3 -19:56:44.481 [RMI TCP Connection(4)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -19:57:13.784 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:57:46.916 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:58:19.940 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:58:54.143 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:59:27.257 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:00:00.391 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:00:33.466 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:01:06.557 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:01:39.595 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:02:12.627 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:02:45.736 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:03:18.762 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:03:51.876 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:04:24.957 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:04:57.975 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:05:31.020 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:06:04.041 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:06:37.088 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:07:10.147 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:07:43.163 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:08:16.223 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:08:49.240 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:09:22.273 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:09:55.352 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:10:28.390 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:11:01.538 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:11:34.707 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:12:07.840 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:12:40.857 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:13:13.908 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:13:46.930 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:14:19.948 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:14:52.984 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:15:26.088 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:15:59.115 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:16:32.150 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:17:05.178 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:17:38.217 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:18:11.249 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:18:44.283 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:19:17.316 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:19:50.416 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:20:23.456 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:20:56.488 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:21:29.572 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:22:02.597 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:22:35.617 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:23:08.662 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:23:41.728 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:24:14.741 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:24:47.767 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:25:20.844 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:25:53.976 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:26:27.091 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:27:00.211 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:27:33.238 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:28:06.257 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:28:39.363 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:29:12.484 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:29:45.650 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:30:19.702 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:30:52.789 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:31:25.838 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:31:59.048 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:32:32.251 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:33:05.320 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:33:38.668 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:34:11.695 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:34:44.802 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:34:51.251 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:34:51.251 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:34:51.347 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:34:51.499 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:34:51.500 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:34:51.501 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:34:51.502 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->780a534d-0290-437f-8480-fefd64b3c2ba -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7e14f484[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 762] -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7612abb6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:34:51.503 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726574201277_117.143.60.138_50997 -20:34:51.506 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@8c1c8b3[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 548] -20:34:51.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->780a534d-0290-437f-8480-fefd64b3c2ba -20:34:51.507 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:34:51.507 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:34:51.507 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:34:54.428 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -20:34:54.428 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:34:54.428 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:34:54.428 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:34:54.429 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:34:54.429 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:34:54.436 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:34:54.436 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:34:54.530 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:34:54.531 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:34:54.531 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:34:54.531 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:34:54.531 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:34:54.531 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:34:54.531 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:34:54.531 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c64073ce-cda1-47a7-b5cd-1f009af8ed38 -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@269c10b9[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 763] -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@39c73780[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:34:54.532 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726574201429_117.143.60.138_50995 -20:34:54.535 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@377f0c7[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 550] -20:34:54.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c64073ce-cda1-47a7-b5cd-1f009af8ed38 -20:34:54.535 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:34:54.535 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:34:54.536 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:34:54.539 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -20:34:55.139 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -20:34:58.663 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:35:00.227 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:35:00.227 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:35:00.291 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:35:00.939 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:35:03.334 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:35:03.335 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:35:03.336 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:35:03.341 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:35:03.344 [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:03.345 [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:03.467 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 70ccf809-d66c-45bc-8e4a-482e0e3aae47 -20:35:03.469 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->70ccf809-d66c-45bc-8e4a-482e0e3aae47 -20:35:03.469 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [70ccf809-d66c-45bc-8e4a-482e0e3aae47] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:35:03.469 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [70ccf809-d66c-45bc-8e4a-482e0e3aae47] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:35:03.469 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [70ccf809-d66c-45bc-8e4a-482e0e3aae47] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:35:03.470 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [70ccf809-d66c-45bc-8e4a-482e0e3aae47] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:35:03.470 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:35:03.595 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [70ccf809-d66c-45bc-8e4a-482e0e3aae47] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726576506210_117.143.60.138_57716 -20:35:03.596 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [70ccf809-d66c-45bc-8e4a-482e0e3aae47] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:35:03.596 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [70ccf809-d66c-45bc-8e4a-482e0e3aae47] Notify connected event to listeners. -20:35:03.596 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [70ccf809-d66c-45bc-8e4a-482e0e3aae47] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x00000008010d10a0 -20:35:03.596 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:35:03.597 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.39', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:35:03.627 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.39:9300 register finished -20:35:03.808 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 7.713 seconds (process running for 8.361) -20:35:03.816 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:35:03.816 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:35:03.817 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP+one -20:35:03.823 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 -20:35:03.823 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP -20:35:03.824 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP+one -20:35:03.825 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:35:03.825 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP -20:35:03.826 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-file+DEFAULT_GROUP+one -20:35:03.826 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 -20:35:03.826 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP -20:35:04.299 [RMI TCP Connection(2)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:35:13.274 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:35:15.873 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:35:15.874 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:35:15.970 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:35:17.109 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:35:19.379 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:35:20.812 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@21dc1d99[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:35:20.812 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7bfa2d74[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:35:20.813 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@467924d8[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:35:20.841 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -20:35:20.841 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -20:35:21.079 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -20:35:21.110 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:35:21.111 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:35:21.112 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:35:21.116 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:35:21.120 [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:21.120 [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:21.222 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 00f6b3cc-deba-4af4-9849-e9f61eb80c62 -20:35:21.224 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->00f6b3cc-deba-4af4-9849-e9f61eb80c62 -20:35:21.225 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:35:21.225 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:35:21.226 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:35:21.227 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:35:21.227 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:35:21.348 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726576524012_117.143.60.138_57787 -20:35:21.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:35:21.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801118870 -20:35:21.349 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Notify connected event to listeners. -20:35:21.349 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:35:21.350 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='10.113.37.39', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:35:21.370 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 10.113.37.39:9202 register finished -20:35:21.556 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 11.612 seconds (process running for 12.224) -20:35:21.568 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:35:21.569 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:35:21.571 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -20:35:21.579 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:35:21.579 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -20:35:21.580 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -20:35:21.580 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -20:35:21.580 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -20:35:21.581 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -20:35:21.582 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -20:35:21.582 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -20:35:21.870 [RMI TCP Connection(4)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:35:21.904 [RMI TCP Connection(5)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -20:35:22.368 [RMI TCP Connection(5)-10.113.37.39] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@1662e1f1 -20:35:22.383 [RMI TCP Connection(5)-10.113.37.39] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -20:35:24.133 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:35:58.188 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:36:00.065 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:36:00.065 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:36:00.099 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:00.099 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:00.615 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Receive server push request, request = NotifySubscriberRequest, requestId = 17384 -20:36:00.616 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Ack server push request, request = NotifySubscriberRequest, requestId = 17384 -20:36:31.330 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:36:32.461 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Receive server push request, request = NotifySubscriberRequest, requestId = 17408 -20:36:32.461 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:32.461 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:32.461 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [00f6b3cc-deba-4af4-9849-e9f61eb80c62] Ack server push request, request = NotifySubscriberRequest, requestId = 17408 -20:37:04.360 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:37:37.435 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:38:10.464 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:38:43.504 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:39:16.575 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:39:49.604 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:40:22.644 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:40:55.678 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:41:28.745 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:42:01.788 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:42:34.817 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:43:07.834 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:43:40.923 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:44:15.064 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:44:48.105 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:45:21.132 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:45:54.187 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:46:27.205 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:47:00.226 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:47:33.313 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:48:06.382 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:48:39.419 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:49:12.460 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:49:45.492 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:50:18.641 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:50:51.797 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:51:24.934 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:51:58.104 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:52:31.250 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:53:04.332 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:53:37.365 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:54:10.472 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:54:44.638 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:55:17.766 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:55:50.855 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:56:24.012 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:56:57.038 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:57:30.125 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:58:03.157 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:58:36.175 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:59:09.212 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:59:42.291 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:00:15.326 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:00:48.358 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:01:21.472 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:01:54.600 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:02:27.618 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:03:00.775 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:03:33.907 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:04:06.936 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:04:39.973 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:05:13.012 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:05:46.042 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:06:19.116 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:06:52.181 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] +08:15:02.248 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +08:15:05.202 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] +08:15:05.204 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +08:15:05.205 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +08:15:05.295 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +08:15:06.223 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +08:15:09.263 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] +08:15:09.595 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +08:15:09.598 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +08:15:09.599 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +08:15:09.616 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +08:15:09.624 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +08:15:09.625 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +08:15:09.736 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 838e4396-ced7-4255-accc-7f2259c49b00 +08:15:09.740 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->838e4396-ced7-4255-accc-7f2259c49b00 +08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +08:15:09.741 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +08:15:09.743 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +08:15:09.743 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050510187_117.143.60.138_64011 +08:15:09.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners. +08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +08:15:09.901 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +08:15:09.901 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x0000026083436b38 +08:15:09.903 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +08:15:09.933 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished +08:15:10.164 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 10.987 seconds (process running for 11.772) +08:15:10.179 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +08:15:10.180 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +08:15:10.181 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP +08:15:10.209 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 +08:15:10.210 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP +08:15:10.215 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP +08:15:10.216 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 +08:15:10.216 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP +08:15:10.217 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP +08:15:10.219 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 +08:15:10.219 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP +08:15:18.428 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +08:58:57.089 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727050510187_117.143.60.138_64011 +08:58:57.090 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server. +08:58:57.091 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:00.215 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:03.231 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:03.433 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053144079_117.143.60.138_57778 +08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050510187_117.143.60.138_64011 +08:59:04.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050510187_117.143.60.138_64011 +08:59:04.336 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners +08:59:04.337 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners. +08:59:04.337 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +08:59:04.755 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:10.772 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:11.412 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848 +08:59:13.785 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:19.808 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:21.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727050502023_117.143.60.138_63984 +08:59:21.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +08:59:21.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:22.818 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053162888_117.143.60.138_57809 +08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050502023_117.143.60.138_63984 +08:59:23.286 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050502023_117.143.60.138_63984 +08:59:23.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners +08:59:23.286 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context... +08:59:23.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners. +08:59:23.287 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context... +08:59:25.829 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:28.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053144079_117.143.60.138_57778 +08:59:28.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server. +08:59:28.505 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:28.830 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:31.626 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:31.841 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:34.628 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:34.832 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:34.847 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:37.836 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:37.852 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:38.149 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:38.333 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848 +08:59:40.857 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:41.152 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:41.559 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:43.860 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:44.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:45.071 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:46.863 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:48.082 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:48.691 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:49.876 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053190580_117.143.60.138_57872 +08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053144079_117.143.60.138_57778 +08:59:50.421 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053144079_117.143.60.138_57778 +08:59:50.421 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners +08:59:50.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners. +08:59:50.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +08:59:50.988 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848 +08:59:52.889 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053162888_117.143.60.138_57809 +09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:00.748 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:03.873 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:06.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:07.087 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:10.091 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:10.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:13.407 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:13.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053214951_117.143.60.138_57914 +09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053162888_117.143.60.138_57809 +09:00:15.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053162888_117.143.60.138_57809 +09:00:15.705 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners +09:00:15.705 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context... +09:00:15.706 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners. +09:00:15.706 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context... +09:00:16.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:16.705 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053190580_117.143.60.138_57872 +09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:18.103 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:19.828 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:21.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:22.845 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:23.046 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:24.232 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:24.432 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:26.050 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:26.364 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:27.442 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:27.754 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:29.379 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:29.788 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:30.769 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:31.174 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:32.796 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:33.297 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:34.184 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:34.700 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:36.309 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:36.919 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053237702_117.143.60.138_57961 +09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053190580_117.143.60.138_57872 +09:00:37.768 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053190580_117.143.60.138_57872 +09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners +09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners. +09:00:37.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:00:38.108 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:00:39.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:40.628 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:43.642 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:44.137 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:00:44.449 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:47.151 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:00:47.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:48.364 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:50.158 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:00:51.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:52.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:53.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:00:53.228 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:53.228 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:55.390 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:56.173 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:00:56.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:56.505 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:56.925 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3498 +09:00:56.926 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3498 +09:00:56.926 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1727053214951_117.143.60.138_57914]Ignore complete event,isRunning:false,isAbandon=false +09:00:59.188 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:00:59.359 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:59.516 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:59.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:00.731 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:02.196 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:01:02.572 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:02.882 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:03.745 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:05.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:05.209 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:01:05.894 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:06.302 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:08.069 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:08.224 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053266976_117.143.60.138_58104 +09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053237702_117.143.60.138_57961 +09:01:08.303 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053237702_117.143.60.138_57961 +09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners +09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners. +09:01:08.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:01:09.474 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:11.235 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:01:12.479 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:13.990 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:17.006 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:18.617 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053281328_117.143.60.138_58153 +09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053214951_117.143.60.138_57914 +09:01:21.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053214951_117.143.60.138_57914 +09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners +09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context... +09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners. +09:01:21.340 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context... +09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053266976_117.143.60.138_58104 +09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:01:36.386 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053298092_117.143.60.138_58222 +09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053266976_117.143.60.138_58104 +09:01:38.443 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053266976_117.143.60.138_58104 +09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners +09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners. +09:01:38.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:01:41.405 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:02:11.836 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848 +09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053281328_117.143.60.138_58153 +09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:26.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:29.314 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053350002_117.143.60.138_58485 +09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053281328_117.143.60.138_58153 +09:02:30.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053281328_117.143.60.138_58153 +09:02:30.638 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners +09:02:30.638 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context... +09:02:30.639 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners. +09:02:30.639 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context... +09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053298092_117.143.60.138_58222 +09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:40.214 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:40.793 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:02:43.335 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:46.345 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:46.547 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:49.550 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:49.860 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:52.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:53.276 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:56.285 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:56.787 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:59.798 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:00.407 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:03.425 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:04.127 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:07.138 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:07.947 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:10.961 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:11.870 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:14.880 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:15.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:18.899 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:20.010 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:23.016 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 11 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:24.229 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:27.235 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 12 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:28.544 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:31.560 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 13 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053350002_117.143.60.138_58485 +09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:03:32.865 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:32.975 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:35.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:35.983 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 14 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:37.494 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053417692_117.143.60.138_51356 +09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053350002_117.143.60.138_58485 +09:03:38.462 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053350002_117.143.60.138_58485 +09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners +09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context... +09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners. +09:03:38.462 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context... +09:03:40.504 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Fail to connect server, after trying 15 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:42.114 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Success to connect a server [110.42.213.184:8848], connectionId = 1727053424091_117.143.60.138_51365 +09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053298092_117.143.60.138_58222 +09:03:43.907 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053298092_117.143.60.138_58222 +09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify disconnected event to listeners +09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Notify connected event to listeners. +09:03:43.907 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:03:45.831 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848 +09:03:46.842 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-file +09:04:45.911 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848 +09:05:48.756 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server healthy check fail, currentConnection = 1727053417692_117.143.60.138_51356 +09:05:48.757 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:05:48.758 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:51.876 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053553642_117.143.60.138_50033 +09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053417692_117.143.60.138_51356 +09:05:53.587 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053417692_117.143.60.138_51356 +09:05:53.587 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify disconnected event to listeners +09:05:53.587 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] DisConnected,clear listen context... +09:05:53.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Notify connected event to listeners. +09:05:53.588 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Connected,notify listen context... +09:05:57.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [030cb6d4-33b9-4f8e-ac4b-e50579e9567f_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:07:21.676 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server check success, currentServer is 110.42.213.184:8848 +09:10:11.146 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +09:10:11.146 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +09:10:11.747 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +09:10:11.748 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->838e4396-ced7-4255-accc-7f2259c49b00 +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@d74f542[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1093] +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3d06bfd5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053424091_117.143.60.138_51365 +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7fc94233[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 794] +09:10:11.749 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->838e4396-ced7-4255-accc-7f2259c49b00 +09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +09:10:11.750 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +09:10:11.750 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [838e4396-ced7-4255-accc-7f2259c49b00] Server healthy check fail, currentConnection = 1727053424091_117.143.60.138_51365 +09:10:41.549 [main] INFO c.m.f.CloudFileApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +09:10:43.857 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9300"] +09:10:43.861 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +09:10:43.861 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +09:10:43.953 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +09:10:45.320 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +09:10:49.734 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9300"] +09:10:49.930 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +09:10:49.930 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +09:10:49.931 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +09:10:49.939 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +09:10:49.946 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:10:49.947 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:10:50.785 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b +09:10:50.789 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b +09:10:50.790 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +09:10:50.791 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +09:10:50.792 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +09:10:50.792 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:10:50.793 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053851529_117.143.60.138_55868 +09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:10:51.502 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Notify connected event to listeners. +09:10:51.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$575/0x000001e33a42fde0 +09:10:51.503 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:10:51.504 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-file with instance Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +09:10:51.703 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-file 10.113.37.107:9300 register finished +09:10:51.896 [main] INFO c.m.f.CloudFileApplication - [logStarted,56] - Started CloudFileApplication in 16.348 seconds (process running for 17.193) +09:10:51.910 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +09:10:51.912 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +09:10:51.913 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file.yml+DEFAULT_GROUP +09:10:51.926 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file.yml, group=DEFAULT_GROUP, cnt=1 +09:10:51.927 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file.yml, group=DEFAULT_GROUP +09:10:51.929 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file-dev.yml+DEFAULT_GROUP +09:10:51.930 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file-dev.yml, group=DEFAULT_GROUP, cnt=1 +09:10:51.930 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file-dev.yml, group=DEFAULT_GROUP +09:10:51.931 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-file+DEFAULT_GROUP +09:10:51.932 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-file, group=DEFAULT_GROUP, cnt=1 +09:10:51.933 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-file, group=DEFAULT_GROUP +09:11:01.700 [http-nio-9300-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:55:40.488 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Server check success, currentServer is 110.42.213.184:8848 +09:56:58.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server healthy check fail, currentConnection = 1727053839884_117.143.60.138_55806 +09:56:58.945 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:56:58.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056619711_117.143.60.138_55318 +09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053839884_117.143.60.138_55806 +09:57:01.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053839884_117.143.60.138_55806 +09:57:01.553 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify disconnected event to listeners +09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] DisConnected,clear listen context... +09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify connected event to listeners. +09:57:01.554 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Connected,notify listen context... +09:57:08.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:58:18.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Server healthy check fail, currentConnection = 1727056619711_117.143.60.138_55318 +09:58:18.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:58:18.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:58:21.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:58:24.482 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:58:24.684 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:58:27.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056707156_117.143.60.138_55463 +09:58:27.002 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056619711_117.143.60.138_55318 +09:58:27.003 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056619711_117.143.60.138_55318 +09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify disconnected event to listeners +09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] DisConnected,clear listen context... +09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Notify connected event to listeners. +09:58:27.003 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [957bdc41-cc1f-4bf2-9610-8f124d5093a7_config-0] Connected,notify listen context... +10:02:48.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b] Server check success, currentServer is 110.42.213.184:8848 +10:37:30.043 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +10:37:30.044 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-file with instance: Instance{instanceId='null', ip='10.113.37.107', port=9300, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +10:37:30.120 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +10:37:30.122 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +10:37:30.122 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +10:37:30.123 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +10:37:30.123 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +10:37:30.124 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +10:37:30.125 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b +10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7d965ee0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1728] +10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1dba9420[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +10:37:30.126 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053851529_117.143.60.138_55868 +10:37:30.127 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@48353597[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1043] +10:37:30.127 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->2b8b1262-bac9-454b-a5e0-e6c6ff9d7a1b +10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +10:37:30.129 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop diff --git a/logs/cloud-gateway/error.2024-09-16.log b/logs/cloud-gateway/error.2024-09-16.log deleted file mode 100644 index 169cc1e..0000000 --- a/logs/cloud-gateway/error.2024-09-16.log +++ /dev/null @@ -1,55 +0,0 @@ -20:12:19.623 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'routerFunctionConfiguration': Unsatisfied dependency expressed through field 'validateCodeHandler': Error creating bean with name 'validateCodeHandler': Lookup method resolution failed - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.gateway.CloudGatewayApplication.main(CloudGatewayApplication.java:15) -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'validateCodeHandler': Lookup method resolution failed - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.checkLookupMethods(AutowiredAnnotationBeanPostProcessor.java:497) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.determineCandidateConstructors(AutowiredAnnotationBeanPostProcessor.java:367) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.determineConstructorsFromBeanPostProcessors(AbstractAutowireCapableBeanFactory.java:1296) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1191) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: java.lang.IllegalStateException: Failed to introspect Class [com.muyu.gateway.handler.ValidateCodeHandler] from ClassLoader [jdk.internal.loader.ClassLoaders$AppClassLoader@63947c6b] - at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:483) - at org.springframework.util.ReflectionUtils.doWithLocalMethods(ReflectionUtils.java:320) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.checkLookupMethods(AutowiredAnnotationBeanPostProcessor.java:475) - ... 33 common frames omitted -Caused by: java.lang.NoClassDefFoundError: com/muyu/common/core/exception/CaptchaException - at java.base/java.lang.Class.getDeclaredMethods0(Native Method) - at java.base/java.lang.Class.privateGetDeclaredMethods(Class.java:3402) - at java.base/java.lang.Class.getDeclaredMethods(Class.java:2504) - at org.springframework.util.ReflectionUtils.getDeclaredMethods(ReflectionUtils.java:465) - ... 35 common frames omitted -Caused by: java.lang.ClassNotFoundException: com.muyu.common.core.exception.CaptchaException - at java.base/jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) - at java.base/jdk.internal.loader.ClassLoaders$AppClassLoader.loadClass(ClassLoaders.java:188) - at java.base/java.lang.ClassLoader.loadClass(ClassLoader.java:520) - ... 39 common frames omitted diff --git a/logs/cloud-gateway/error.log b/logs/cloud-gateway/error.log index fe7dd81..ff51a30 100644 --- a/logs/cloud-gateway/error.log +++ b/logs/cloud-gateway/error.log @@ -1,5113 +1,4535 @@ -15:30:46.608 [reactor-http-nio-19] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/code/gen/importTable -15:30:57.079 [reactor-http-nio-20] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/code/gen/importTable -16:12:10.790 [nacos-grpc-client-executor-47.116.173.119-540] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559532221_117.136.120.204_26649]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.816 [nacos-grpc-client-executor-47.116.173.119-244] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559527581_117.136.120.204_26645]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.838 [nacos-grpc-client-executor-47.116.173.119-245] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559531536_117.136.120.204_26648]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.927 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.962 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.962 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.213 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.260 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.260 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.439 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.476 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.743 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.790 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.155 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.202 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.672 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.719 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.287 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.552 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:14.311 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:14.500 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.347 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.581 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.396 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 760600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6975b6ee[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2367d865, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@c9471bb, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@66a1754f}}}}]] +08:59:35.297 [boundedElastic-53] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf90c5ddfe3d6ef1dec03dda6c54ace, Client-RequestTS=1727053175192, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.408 [boundedElastic-53] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf90c5ddfe3d6ef1dec03dda6c54ace, Client-RequestTS=1727053175192, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.518 [boundedElastic-53] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf90c5ddfe3d6ef1dec03dda6c54ace, Client-RequestTS=1727053175192, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:35.629 [boundedElastic-53] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf90c5ddfe3d6ef1dec03dda6c54ace, Client-RequestTS=1727053175192, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:38.023 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 524100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7c74dc0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:16.522 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.852 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:17.367 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:17.594 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.594 [boundedElastic-20] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.595 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.697 [boundedElastic-20] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.697 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.697 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.778 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:17.798 [boundedElastic-20] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.798 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.798 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.904 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.904 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.904 [boundedElastic-20] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -16:12:17.907 [boundedElastic-14] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:41.598 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053178837_117.143.60.138_57838, request = ConfigBatchListenRequest +08:59:41.700 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e6a9fefa983fcd4ef928aea9ca8912f, Client-RequestTS=1727053179663, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +08:59:41.809 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e6a9fefa983fcd4ef928aea9ca8912f, Client-RequestTS=1727053179663, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:41.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e6a9fefa983fcd4ef928aea9ca8912f, Client-RequestTS=1727053179663, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.025 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e6a9fefa983fcd4ef928aea9ca8912f, Client-RequestTS=1727053179663, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.025 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:17.907 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:42.199 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=90f37e49185ff4efe661e5407faa0a96, Client-RequestTS=1727053182089, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.309 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=90f37e49185ff4efe661e5407faa0a96, Client-RequestTS=1727053182089, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.420 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=90f37e49185ff4efe661e5407faa0a96, Client-RequestTS=1727053182089, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.531 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=90f37e49185ff4efe661e5407faa0a96, Client-RequestTS=1727053182089, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.531 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at jdk.internal.reflect.GeneratedMethodAccessor123.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) - at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) - at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.cloud.gateway.route.RouteRefreshListener.reset(RouteRefreshListener.java:73) - at org.springframework.cloud.gateway.route.RouteRefreshListener.resetIfNeeded(RouteRefreshListener.java:68) - at org.springframework.cloud.gateway.route.RouteRefreshListener.onApplicationEvent(RouteRefreshListener.java:62) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) - at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:17.907 [boundedElastic-20] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:42.703 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0719678587e0b830554c7bc737c5dbe6, Client-RequestTS=1727053182593, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.814 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0719678587e0b830554c7bc737c5dbe6, Client-RequestTS=1727053182593, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:42.926 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0719678587e0b830554c7bc737c5dbe6, Client-RequestTS=1727053182593, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:43.035 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0719678587e0b830554c7bc737c5dbe6, Client-RequestTS=1727053182593, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:43.035 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:18.014 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.014 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.123 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.123 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.123 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.238 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.238 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.342 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.342 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.342 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:43.205 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2323a015df134121a3d2e9ce78095c82, Client-RequestTS=1727053183097, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:43.314 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2323a015df134121a3d2e9ce78095c82, Client-RequestTS=1727053183097, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:43.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2323a015df134121a3d2e9ce78095c82, Client-RequestTS=1727053183097, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:43.532 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2323a015df134121a3d2e9ce78095c82, Client-RequestTS=1727053183097, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:43.532 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at jdk.internal.reflect.GeneratedMethodAccessor123.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) - at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) - at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) - at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:18.342 [boundedElastic-14] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:43.705 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eefbee7820b948b126c6a64d2b652c37, Client-RequestTS=1727053183594, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:43.813 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eefbee7820b948b126c6a64d2b652c37, Client-RequestTS=1727053183594, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:43.922 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eefbee7820b948b126c6a64d2b652c37, Client-RequestTS=1727053183594, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:44.031 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eefbee7820b948b126c6a64d2b652c37, Client-RequestTS=1727053183594, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:44.031 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:18.428 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.450 [boundedElastic-20] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.559 [boundedElastic-20] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.663 [boundedElastic-20] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.775 [boundedElastic-20] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -16:12:18.775 [boundedElastic-20] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:44.202 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6998452bcdaaa5f09be39e12bb232c75, Client-RequestTS=1727053184094, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:44.310 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6998452bcdaaa5f09be39e12bb232c75, Client-RequestTS=1727053184094, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:44.420 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6998452bcdaaa5f09be39e12bb232c75, Client-RequestTS=1727053184094, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:44.531 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6998452bcdaaa5f09be39e12bb232c75, Client-RequestTS=1727053184094, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:44.531 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:19.146 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.501 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.589 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.601 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.856 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.946 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.160 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.200 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.497 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:23.607 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:23.650 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.174 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.228 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.501 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.930 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:26.918 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:27.379 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:27.773 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:28.454 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.339 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.725 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:30.308 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:27:41.679 [reactor-http-nio-20] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -16:27:53.381 [reactor-http-nio-3] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -16:28:00.389 [reactor-http-nio-5] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -16:28:02.898 [reactor-http-nio-2] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/auth/logout,异常信息:Connection timed out: no further information: /192.168.245.139:9500 -16:28:14.533 [reactor-http-nio-4] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/auth/logout,异常信息:Connection timed out: no further information: /192.168.245.139:9500 -16:28:21.441 [reactor-http-nio-6] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/auth/logout,异常信息:Connection timed out: no further information: /192.168.245.139:9500 -16:28:31.008 [reactor-http-nio-7] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -16:28:39.398 [reactor-http-nio-9] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/auth/logout,异常信息:Software caused connection abort: no further information: /192.168.245.139:9500 -16:28:39.401 [nacos-grpc-client-executor-47.116.173.119-508] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560754191_117.143.60.138_58360]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.402 [nacos-grpc-client-executor-47.116.173.119-1013] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753689_117.143.60.138_58345]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.402 [nacos-grpc-client-executor-47.116.173.119-497] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753264_117.143.60.138_58328]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.411 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.421 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.422 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.526 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.530 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.531 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.734 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.735 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.750 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:31:47.574 [reactor-http-nio-12] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -19:26:47.298 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 22 milliseconds, 236000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3fecb04e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:44.608 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 666700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59bc1f25[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:50.430 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 734600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@e5475de[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:44.700 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d1f002e6bd286f0556398ac9a34d190, Client-RequestTS=1727053184593, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:44.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d1f002e6bd286f0556398ac9a34d190, Client-RequestTS=1727053184593, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:44.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d1f002e6bd286f0556398ac9a34d190, Client-RequestTS=1727053184593, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:45.024 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d1f002e6bd286f0556398ac9a34d190, Client-RequestTS=1727053184593, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:45.024 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:45.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e5bb8b8a9e86b500e55dee8aeed6bde3, Client-RequestTS=1727053185087, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:45.305 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e5bb8b8a9e86b500e55dee8aeed6bde3, Client-RequestTS=1727053185087, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:45.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e5bb8b8a9e86b500e55dee8aeed6bde3, Client-RequestTS=1727053185087, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:45.515 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e5bb8b8a9e86b500e55dee8aeed6bde3, Client-RequestTS=1727053185087, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:45.515 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:45.683 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=299566fb75aa31f60a1b7802252ef07e, Client-RequestTS=1727053185573, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:45.793 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=299566fb75aa31f60a1b7802252ef07e, Client-RequestTS=1727053185573, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:45.903 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=299566fb75aa31f60a1b7802252ef07e, Client-RequestTS=1727053185573, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.010 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=299566fb75aa31f60a1b7802252ef07e, Client-RequestTS=1727053185573, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.010 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:46.180 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58a13acc010997e5263193cca468a40e, Client-RequestTS=1727053186073, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58a13acc010997e5263193cca468a40e, Client-RequestTS=1727053186073, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.397 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58a13acc010997e5263193cca468a40e, Client-RequestTS=1727053186073, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.506 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58a13acc010997e5263193cca468a40e, Client-RequestTS=1727053186073, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.506 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:46.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d8a7db5ae256205163914a6a5722418f, Client-RequestTS=1727053186567, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.777 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d8a7db5ae256205163914a6a5722418f, Client-RequestTS=1727053186567, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.878 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d8a7db5ae256205163914a6a5722418f, Client-RequestTS=1727053186567, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.979 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d8a7db5ae256205163914a6a5722418f, Client-RequestTS=1727053186567, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:46.979 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:47.147 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8fb63ddf87a01f6c8144f93fbf579e56, Client-RequestTS=1727053187036, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:47.255 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8fb63ddf87a01f6c8144f93fbf579e56, Client-RequestTS=1727053187036, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:47.363 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8fb63ddf87a01f6c8144f93fbf579e56, Client-RequestTS=1727053187036, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:47.471 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8fb63ddf87a01f6c8144f93fbf579e56, Client-RequestTS=1727053187036, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:47.471 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:47.642 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86dc87ea8aeefcf5ba4fa9fbfc91a7e, Client-RequestTS=1727053187533, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:47.721 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 205000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4c8a84dd[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:53.649 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 83999 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@726eb3a0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:47.742 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86dc87ea8aeefcf5ba4fa9fbfc91a7e, Client-RequestTS=1727053187533, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:47.844 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86dc87ea8aeefcf5ba4fa9fbfc91a7e, Client-RequestTS=1727053187533, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:47.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86dc87ea8aeefcf5ba4fa9fbfc91a7e, Client-RequestTS=1727053187533, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:47.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:01.715 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [check,521] - Client don't receive server abilities table even empty table but server supports ability negotiation. You can check if it is need to adjust the timeout of ability negotiation by property: nacos.remote.client.grpc.channel.capability.negotiation.timeout if always fail to connect. -19:27:44.405 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=15877e9733cc6b72cb3c931c70a05328, Client-RequestTS=1726572461399, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 40100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@22d76ad4[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:27:55.627 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 593800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5abacc52[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:48.129 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d24b42a80ca23e19864aea4f14a34318, Client-RequestTS=1727053188019, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:48.239 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d24b42a80ca23e19864aea4f14a34318, Client-RequestTS=1727053188019, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:48.349 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d24b42a80ca23e19864aea4f14a34318, Client-RequestTS=1727053188019, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:48.458 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d24b42a80ca23e19864aea4f14a34318, Client-RequestTS=1727053188019, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:48.458 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:58.744 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 146400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d4be668[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:48.629 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec5f250cb1a1c7d48239837dcb441f6e, Client-RequestTS=1727053188521, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:48.737 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec5f250cb1a1c7d48239837dcb441f6e, Client-RequestTS=1727053188521, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:48.846 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec5f250cb1a1c7d48239837dcb441f6e, Client-RequestTS=1727053188521, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:48.956 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec5f250cb1a1c7d48239837dcb441f6e, Client-RequestTS=1727053188521, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:48.956 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:01.516 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a5aaa3a902cd51c30d24e856092a7f0, Client-RequestTS=1726572481393, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:28:01.646 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a5aaa3a902cd51c30d24e856092a7f0, Client-RequestTS=1726572481393, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:28:01.758 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a5aaa3a902cd51c30d24e856092a7f0, Client-RequestTS=1726572481393, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:28:01.860 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a5aaa3a902cd51c30d24e856092a7f0, Client-RequestTS=1726572481393, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:28:01.967 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 369100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1932cfb7[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:49.127 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=caa05b244a3c33169ab419ac3d592b04, Client-RequestTS=1727053189019, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:49.236 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=caa05b244a3c33169ab419ac3d592b04, Client-RequestTS=1727053189019, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +08:59:49.346 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=caa05b244a3c33169ab419ac3d592b04, Client-RequestTS=1727053189019, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +08:59:49.454 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=caa05b244a3c33169ab419ac3d592b04, Client-RequestTS=1727053189019, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +08:59:49.454 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:24.428 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0f429bb007d4d23169de9f02b23ab1d7, Client-RequestTS=1726572501425, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 805800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5f33dd2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:04.405 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c8335815ebc54371a9282ee2be1e8c94, Client-RequestTS=1726572541401, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 475600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2ebf5548[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:17.045 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 195800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4195840a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:21.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=202fe3c0a5f4d8c8313914b5516a858a, Client-RequestTS=1726572558918, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 796600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2a769c1b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:21.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 796600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2a769c1b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +08:59:49.626 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1ab03decf1aab665a19bfd3ef47e327, Client-RequestTS=1727053189516, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +08:59:49.736 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1ab03decf1aab665a19bfd3ef47e327, Client-RequestTS=1727053189516, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:01.591 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9905ce7ab590d1d831febd1b60531857, Client-RequestTS=1727053198581, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 926900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e3f2a6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:00:01.591 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 926900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e3f2a6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 796600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2a769c1b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 926900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e3f2a6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 10 common frames omitted -19:29:22.104 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bdd4e0a35c1034e9f5437fd4ee503b74, Client-RequestTS=1726572561995, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:22.212 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bdd4e0a35c1034e9f5437fd4ee503b74, Client-RequestTS=1726572561995, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:22.322 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bdd4e0a35c1034e9f5437fd4ee503b74, Client-RequestTS=1726572561995, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:22.432 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bdd4e0a35c1034e9f5437fd4ee503b74, Client-RequestTS=1726572561995, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:22.432 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:22.604 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2cf8be68d662bc5eaaa79febc32301f8, Client-RequestTS=1726572562495, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:22.713 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2cf8be68d662bc5eaaa79febc32301f8, Client-RequestTS=1726572562495, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:22.713 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 431400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d1eb4b5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:22.715 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 431400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d1eb4b5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 431400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d1eb4b5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 14 common frames omitted -19:29:22.820 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2cf8be68d662bc5eaaa79febc32301f8, Client-RequestTS=1726572562495, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:22.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2cf8be68d662bc5eaaa79febc32301f8, Client-RequestTS=1726572562495, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:22.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:23.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dec3da56d7fc82d13a726d02e5bc7bb0, Client-RequestTS=1726572562992, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.100 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 417800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60ce2cc1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:23.101 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 985000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ed7f623[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:23.101 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 917600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2702223a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:23.101 [boundedElastic-23] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 985000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ed7f623[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 985000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ed7f623[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 19 common frames omitted -19:29:23.101 [boundedElastic-27] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 917600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2702223a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 917600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2702223a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 19 common frames omitted -19:29:23.101 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 417800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60ce2cc1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at jdk.internal.reflect.GeneratedMethodAccessor119.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) - at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) - at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.cloud.gateway.route.RouteRefreshListener.reset(RouteRefreshListener.java:73) - at org.springframework.cloud.gateway.route.RouteRefreshListener.resetIfNeeded(RouteRefreshListener.java:68) - at org.springframework.cloud.gateway.route.RouteRefreshListener.onApplicationEvent(RouteRefreshListener.java:62) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) - at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 417800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60ce2cc1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 39 common frames omitted -19:29:23.207 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.207 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dec3da56d7fc82d13a726d02e5bc7bb0, Client-RequestTS=1726572562992, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.207 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.317 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dec3da56d7fc82d13a726d02e5bc7bb0, Client-RequestTS=1726572562992, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.317 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.317 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.427 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.427 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dec3da56d7fc82d13a726d02e5bc7bb0, Client-RequestTS=1726572562992, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:23.537 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.537 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.537 [boundedElastic-23] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:23.537 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at jdk.internal.reflect.GeneratedMethodAccessor119.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) - at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) - at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) - at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:23.600 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1dd288068c41722cc07306a2b499ab22, Client-RequestTS=1726572563490, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.646 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.709 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1dd288068c41722cc07306a2b499ab22, Client-RequestTS=1726572563490, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.757 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.819 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1dd288068c41722cc07306a2b499ab22, Client-RequestTS=1726572563490, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.866 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1dd288068c41722cc07306a2b499ab22, Client-RequestTS=1726572563490, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:23.974 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:23.974 [boundedElastic-23] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:24.098 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48e024b69a4ed3ccc75a1cbe2064d1bc, Client-RequestTS=1726572563990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:24.209 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48e024b69a4ed3ccc75a1cbe2064d1bc, Client-RequestTS=1726572563990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:24.332 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48e024b69a4ed3ccc75a1cbe2064d1bc, Client-RequestTS=1726572563990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:24.395 [boundedElastic-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 11200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e6c2877[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:24.395 [boundedElastic-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 11200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e6c2877[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) - at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 11200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e6c2877[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 21 common frames omitted -19:29:24.427 [boundedElastic-22] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d922be6dda454add5f86fde1f9b35615, Client-RequestTS=1726572561416, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 455200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4e1dc17f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:24.443 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48e024b69a4ed3ccc75a1cbe2064d1bc, Client-RequestTS=1726572563990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:24.443 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:24.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ca120659079e14a13aaa5b5f9dc47c1, Client-RequestTS=1726572564505, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:24.723 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ca120659079e14a13aaa5b5f9dc47c1, Client-RequestTS=1726572564505, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:24.834 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ca120659079e14a13aaa5b5f9dc47c1, Client-RequestTS=1726572564505, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:24.944 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ca120659079e14a13aaa5b5f9dc47c1, Client-RequestTS=1726572564505, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:24.944 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:25.115 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=09e8caa69c8542b6e5ec1bdc69b419d7, Client-RequestTS=1726572565006, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:25.227 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=09e8caa69c8542b6e5ec1bdc69b419d7, Client-RequestTS=1726572565006, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:25.337 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=09e8caa69c8542b6e5ec1bdc69b419d7, Client-RequestTS=1726572565006, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:25.447 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=09e8caa69c8542b6e5ec1bdc69b419d7, Client-RequestTS=1726572565006, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:25.447 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:25.620 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=629bb0aa8f686e3e3bea5badd57aa25d, Client-RequestTS=1726572565510, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:25.729 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=629bb0aa8f686e3e3bea5badd57aa25d, Client-RequestTS=1726572565510, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:25.839 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=629bb0aa8f686e3e3bea5badd57aa25d, Client-RequestTS=1726572565510, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:25.950 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=629bb0aa8f686e3e3bea5badd57aa25d, Client-RequestTS=1726572565510, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:25.950 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:26.121 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=881d88027392abc9f256051322108417, Client-RequestTS=1726572566013, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:26.230 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=881d88027392abc9f256051322108417, Client-RequestTS=1726572566013, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:26.339 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=881d88027392abc9f256051322108417, Client-RequestTS=1726572566013, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:26.448 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=881d88027392abc9f256051322108417, Client-RequestTS=1726572566013, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:26.448 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:26.620 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c3382d2fc72a9a6b52e9a5d6501f3e25, Client-RequestTS=1726572566511, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:26.730 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c3382d2fc72a9a6b52e9a5d6501f3e25, Client-RequestTS=1726572566511, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:26.837 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c3382d2fc72a9a6b52e9a5d6501f3e25, Client-RequestTS=1726572566511, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:26.948 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c3382d2fc72a9a6b52e9a5d6501f3e25, Client-RequestTS=1726572566511, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:26.948 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:27.120 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6c11af9e8429940beb183b45b59f8b5d, Client-RequestTS=1726572567010, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:27.231 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6c11af9e8429940beb183b45b59f8b5d, Client-RequestTS=1726572567010, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:27.343 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6c11af9e8429940beb183b45b59f8b5d, Client-RequestTS=1726572567010, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:27.455 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6c11af9e8429940beb183b45b59f8b5d, Client-RequestTS=1726572567010, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:27.456 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:27.625 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=55589ac39df7cb1bb879cc43fcbc256f, Client-RequestTS=1726572567517, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:27.736 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=55589ac39df7cb1bb879cc43fcbc256f, Client-RequestTS=1726572567517, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:27.846 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=55589ac39df7cb1bb879cc43fcbc256f, Client-RequestTS=1726572567517, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:27.954 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=55589ac39df7cb1bb879cc43fcbc256f, Client-RequestTS=1726572567517, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:27.954 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:28.125 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd3d180ebf3fec47cddeacf7da8d3ffe, Client-RequestTS=1726572568016, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:28.234 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd3d180ebf3fec47cddeacf7da8d3ffe, Client-RequestTS=1726572568016, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:28.344 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd3d180ebf3fec47cddeacf7da8d3ffe, Client-RequestTS=1726572568016, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:28.453 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd3d180ebf3fec47cddeacf7da8d3ffe, Client-RequestTS=1726572568016, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:28.453 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:28.623 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=018f35e8dd696909be27ff3e1a9de9ae, Client-RequestTS=1726572568516, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:28.732 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=018f35e8dd696909be27ff3e1a9de9ae, Client-RequestTS=1726572568516, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:28.840 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=018f35e8dd696909be27ff3e1a9de9ae, Client-RequestTS=1726572568516, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:28.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=018f35e8dd696909be27ff3e1a9de9ae, Client-RequestTS=1726572568516, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:28.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:29.117 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b3bb6fa7e0e6890fbefb4af6c5f7b4f3, Client-RequestTS=1726572569009, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:29.224 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b3bb6fa7e0e6890fbefb4af6c5f7b4f3, Client-RequestTS=1726572569009, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:29.333 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b3bb6fa7e0e6890fbefb4af6c5f7b4f3, Client-RequestTS=1726572569009, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:29.442 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b3bb6fa7e0e6890fbefb4af6c5f7b4f3, Client-RequestTS=1726572569009, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:29.442 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:29.614 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e7544ba80e312d687ecaa20a2f3e7d4, Client-RequestTS=1726572569506, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:29.723 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e7544ba80e312d687ecaa20a2f3e7d4, Client-RequestTS=1726572569506, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:29.830 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e7544ba80e312d687ecaa20a2f3e7d4, Client-RequestTS=1726572569506, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:29.939 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e7544ba80e312d687ecaa20a2f3e7d4, Client-RequestTS=1726572569506, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:29.939 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:30.110 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5272b864f89003c70fc3775ee197a363, Client-RequestTS=1726572570001, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:30.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5272b864f89003c70fc3775ee197a363, Client-RequestTS=1726572570001, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:30.327 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5272b864f89003c70fc3775ee197a363, Client-RequestTS=1726572570001, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:30.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5272b864f89003c70fc3775ee197a363, Client-RequestTS=1726572570001, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:30.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:30.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b776a5199286165f2cd7ad3dae6ded73, Client-RequestTS=1726572570498, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:30.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b776a5199286165f2cd7ad3dae6ded73, Client-RequestTS=1726572570498, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:30.827 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b776a5199286165f2cd7ad3dae6ded73, Client-RequestTS=1726572570498, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:30.936 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b776a5199286165f2cd7ad3dae6ded73, Client-RequestTS=1726572570498, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:30.936 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:31.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=305fcd19c1723e23db369e2b1f83a557, Client-RequestTS=1726572570999, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:31.221 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=305fcd19c1723e23db369e2b1f83a557, Client-RequestTS=1726572570999, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:31.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=305fcd19c1723e23db369e2b1f83a557, Client-RequestTS=1726572570999, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:31.436 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=305fcd19c1723e23db369e2b1f83a557, Client-RequestTS=1726572570999, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:31.436 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:31.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=026dc8e14892fd4273a00b70472ede01, Client-RequestTS=1726572571498, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:31.715 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=026dc8e14892fd4273a00b70472ede01, Client-RequestTS=1726572571498, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:31.824 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=026dc8e14892fd4273a00b70472ede01, Client-RequestTS=1726572571498, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:31.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=026dc8e14892fd4273a00b70472ede01, Client-RequestTS=1726572571498, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:31.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:32.104 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e44e94e799ffb3316c671949cb22163, Client-RequestTS=1726572571995, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:32.213 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e44e94e799ffb3316c671949cb22163, Client-RequestTS=1726572571995, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:32.323 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e44e94e799ffb3316c671949cb22163, Client-RequestTS=1726572571995, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:32.431 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e44e94e799ffb3316c671949cb22163, Client-RequestTS=1726572571995, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:32.431 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:32.603 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f315e31dbca79e888fb7204f6de6edec, Client-RequestTS=1726572572493, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:32.711 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f315e31dbca79e888fb7204f6de6edec, Client-RequestTS=1726572572493, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:32.819 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f315e31dbca79e888fb7204f6de6edec, Client-RequestTS=1726572572493, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:32.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f315e31dbca79e888fb7204f6de6edec, Client-RequestTS=1726572572493, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:32.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:33.100 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=219fbb1ffc2b6809a5496d0471a93577, Client-RequestTS=1726572572991, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:33.209 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=219fbb1ffc2b6809a5496d0471a93577, Client-RequestTS=1726572572991, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:33.318 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=219fbb1ffc2b6809a5496d0471a93577, Client-RequestTS=1726572572991, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:33.428 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=219fbb1ffc2b6809a5496d0471a93577, Client-RequestTS=1726572572991, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:33.428 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:33.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec7520bb86782e177b106996bad98613, Client-RequestTS=1726572573491, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:33.707 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec7520bb86782e177b106996bad98613, Client-RequestTS=1726572573491, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:33.816 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec7520bb86782e177b106996bad98613, Client-RequestTS=1726572573491, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:33.925 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec7520bb86782e177b106996bad98613, Client-RequestTS=1726572573491, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:33.925 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:34.097 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6ae0ec543c7eb2b55ef89fb78ad09a7f, Client-RequestTS=1726572573989, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:34.205 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6ae0ec543c7eb2b55ef89fb78ad09a7f, Client-RequestTS=1726572573989, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:34.314 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6ae0ec543c7eb2b55ef89fb78ad09a7f, Client-RequestTS=1726572573989, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:34.345 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 231600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1c4dd7c4[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] + ... 9 common frames omitted +09:00:47.399 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 871200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59928d01[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:34.423 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6ae0ec543c7eb2b55ef89fb78ad09a7f, Client-RequestTS=1726572573989, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:34.423 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:34.595 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aededc47ac5a75e5bdc72797b0b4c7ef, Client-RequestTS=1726572574486, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:34.703 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aededc47ac5a75e5bdc72797b0b4c7ef, Client-RequestTS=1726572574486, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:34.810 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aededc47ac5a75e5bdc72797b0b4c7ef, Client-RequestTS=1726572574486, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:34.918 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aededc47ac5a75e5bdc72797b0b4c7ef, Client-RequestTS=1726572574486, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:34.918 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:35.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=35754a9f8752e4c17d115ca57d4ed1a6, Client-RequestTS=1726572574980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:35.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=35754a9f8752e4c17d115ca57d4ed1a6, Client-RequestTS=1726572574980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:35.305 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=35754a9f8752e4c17d115ca57d4ed1a6, Client-RequestTS=1726572574980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:35.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=35754a9f8752e4c17d115ca57d4ed1a6, Client-RequestTS=1726572574980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:35.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:35.593 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c137f64f423bf0d18550513520cc7e4f, Client-RequestTS=1726572575476, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:35.708 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c137f64f423bf0d18550513520cc7e4f, Client-RequestTS=1726572575476, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:35.816 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c137f64f423bf0d18550513520cc7e4f, Client-RequestTS=1726572575476, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:35.925 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c137f64f423bf0d18550513520cc7e4f, Client-RequestTS=1726572575476, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:35.925 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:36.097 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db2758885338b2c7dfa94f1b3087365e, Client-RequestTS=1726572575988, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:36.205 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db2758885338b2c7dfa94f1b3087365e, Client-RequestTS=1726572575988, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:36.312 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db2758885338b2c7dfa94f1b3087365e, Client-RequestTS=1726572575988, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:36.420 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db2758885338b2c7dfa94f1b3087365e, Client-RequestTS=1726572575988, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:36.420 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:36.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8dbdff89d8f039d089fb7531e2fcb839, Client-RequestTS=1726572576481, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:36.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8dbdff89d8f039d089fb7531e2fcb839, Client-RequestTS=1726572576481, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:36.806 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8dbdff89d8f039d089fb7531e2fcb839, Client-RequestTS=1726572576481, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:36.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8dbdff89d8f039d089fb7531e2fcb839, Client-RequestTS=1726572576481, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:36.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:37.087 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03c9190521173450e22a27edb434ac4a, Client-RequestTS=1726572576978, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:37.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03c9190521173450e22a27edb434ac4a, Client-RequestTS=1726572576978, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:37.304 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03c9190521173450e22a27edb434ac4a, Client-RequestTS=1726572576978, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:37.415 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03c9190521173450e22a27edb434ac4a, Client-RequestTS=1726572576978, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:37.415 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:37.462 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 376600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5c9e9b89[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:49.642 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 294100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c24eccf[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:37.586 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1f36c7a2512bb2ddffdd63959452a29, Client-RequestTS=1726572577477, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:37.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1f36c7a2512bb2ddffdd63959452a29, Client-RequestTS=1726572577477, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:37.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1f36c7a2512bb2ddffdd63959452a29, Client-RequestTS=1726572577477, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:37.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c1f36c7a2512bb2ddffdd63959452a29, Client-RequestTS=1726572577477, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:37.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:38.087 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0d4b3b7428ad7fd81f8dd84660762708, Client-RequestTS=1726572577979, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:38.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0d4b3b7428ad7fd81f8dd84660762708, Client-RequestTS=1726572577979, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:38.226 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 567300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@13c7a0db[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:50.517 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 800500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4f69c6be[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:38.302 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0d4b3b7428ad7fd81f8dd84660762708, Client-RequestTS=1726572577979, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:38.410 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0d4b3b7428ad7fd81f8dd84660762708, Client-RequestTS=1726572577979, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:38.410 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:38.584 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1f264be80e0efe6bf85c4f1ad0fad578, Client-RequestTS=1726572578473, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:38.693 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1f264be80e0efe6bf85c4f1ad0fad578, Client-RequestTS=1726572578473, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:38.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1f264be80e0efe6bf85c4f1ad0fad578, Client-RequestTS=1726572578473, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:38.913 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1f264be80e0efe6bf85c4f1ad0fad578, Client-RequestTS=1726572578473, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:38.913 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:39.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=af759229c8ecb0cfe93ae277261b0c88, Client-RequestTS=1726572578976, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:39.192 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=af759229c8ecb0cfe93ae277261b0c88, Client-RequestTS=1726572578976, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:39.299 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=af759229c8ecb0cfe93ae277261b0c88, Client-RequestTS=1726572578976, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:39.408 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=af759229c8ecb0cfe93ae277261b0c88, Client-RequestTS=1726572578976, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:39.408 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:39.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a67bd97b4654aadec01244fbc7c15d9, Client-RequestTS=1726572579470, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:39.690 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a67bd97b4654aadec01244fbc7c15d9, Client-RequestTS=1726572579470, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:39.799 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a67bd97b4654aadec01244fbc7c15d9, Client-RequestTS=1726572579470, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:39.909 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a67bd97b4654aadec01244fbc7c15d9, Client-RequestTS=1726572579470, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:39.909 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:40.079 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=10c0bdb76544ebc2465d1e75da92db04, Client-RequestTS=1726572579969, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:40.190 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=10c0bdb76544ebc2465d1e75da92db04, Client-RequestTS=1726572579969, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:40.298 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=10c0bdb76544ebc2465d1e75da92db04, Client-RequestTS=1726572579969, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:40.407 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=10c0bdb76544ebc2465d1e75da92db04, Client-RequestTS=1726572579969, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:40.407 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:40.580 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c60bc789f5e2aabd2fe6f4a190d99bb2, Client-RequestTS=1726572580470, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:40.673 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 136300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@45339188[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:52.746 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 972200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5fe6cae2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:40.688 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c60bc789f5e2aabd2fe6f4a190d99bb2, Client-RequestTS=1726572580470, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:40.796 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c60bc789f5e2aabd2fe6f4a190d99bb2, Client-RequestTS=1726572580470, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:40.905 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c60bc789f5e2aabd2fe6f4a190d99bb2, Client-RequestTS=1726572580470, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:40.905 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:41.076 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e83e1003f4213f90e7b969dec7c122e3, Client-RequestTS=1726572580968, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.184 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e83e1003f4213f90e7b969dec7c122e3, Client-RequestTS=1726572580968, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.295 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e83e1003f4213f90e7b969dec7c122e3, Client-RequestTS=1726572580968, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.406 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e83e1003f4213f90e7b969dec7c122e3, Client-RequestTS=1726572580968, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.406 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:41.500 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.530 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=15707a128ea45ca84ff4cb36e302d504, Client-RequestTS=1726572581421, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.578 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4533d38947589095ee54b90ad12046c8, Client-RequestTS=1726572581468, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.609 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.640 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=15707a128ea45ca84ff4cb36e302d504, Client-RequestTS=1726572581421, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.687 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4533d38947589095ee54b90ad12046c8, Client-RequestTS=1726572581468, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.718 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.748 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=15707a128ea45ca84ff4cb36e302d504, Client-RequestTS=1726572581421, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.795 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4533d38947589095ee54b90ad12046c8, Client-RequestTS=1726572581468, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.827 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.827 [boundedElastic-28] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) - at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:41.858 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=15707a128ea45ca84ff4cb36e302d504, Client-RequestTS=1726572581421, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.905 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4533d38947589095ee54b90ad12046c8, Client-RequestTS=1726572581468, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:41.905 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:42.075 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bae9d1e139567e856e71e6b26ca0fc5f, Client-RequestTS=1726572581966, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:42.185 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bae9d1e139567e856e71e6b26ca0fc5f, Client-RequestTS=1726572581966, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:42.293 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bae9d1e139567e856e71e6b26ca0fc5f, Client-RequestTS=1726572581966, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:42.404 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bae9d1e139567e856e71e6b26ca0fc5f, Client-RequestTS=1726572581966, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:42.404 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:42.564 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3bd2ab805e21bde00f7c451629088b6, Client-RequestTS=1726572582455, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:42.672 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3bd2ab805e21bde00f7c451629088b6, Client-RequestTS=1726572582455, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:42.783 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3bd2ab805e21bde00f7c451629088b6, Client-RequestTS=1726572582455, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:42.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3bd2ab805e21bde00f7c451629088b6, Client-RequestTS=1726572582455, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:42.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:43.059 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=905cd520a97fdb5c6f7ec2211a71c5eb, Client-RequestTS=1726572582953, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:43.168 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=905cd520a97fdb5c6f7ec2211a71c5eb, Client-RequestTS=1726572582953, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:43.279 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=905cd520a97fdb5c6f7ec2211a71c5eb, Client-RequestTS=1726572582953, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:43.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=905cd520a97fdb5c6f7ec2211a71c5eb, Client-RequestTS=1726572582953, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:43.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:43.563 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=105f7f2818ff7818aa843702881ce272, Client-RequestTS=1726572583454, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:43.672 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=105f7f2818ff7818aa843702881ce272, Client-RequestTS=1726572583454, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:43.782 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=105f7f2818ff7818aa843702881ce272, Client-RequestTS=1726572583454, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:43.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=105f7f2818ff7818aa843702881ce272, Client-RequestTS=1726572583454, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:43.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:43.987 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 260100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@21b82b29[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:53.726 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 298400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@541fbf44[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:44.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=efadd39a85cabbe878c012342817038d, Client-RequestTS=1726572583956, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:44.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=efadd39a85cabbe878c012342817038d, Client-RequestTS=1726572583956, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:44.287 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=efadd39a85cabbe878c012342817038d, Client-RequestTS=1726572583956, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:44.399 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=efadd39a85cabbe878c012342817038d, Client-RequestTS=1726572583956, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:44.399 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:55.951 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 42900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4d0c46d5[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:57.052 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 25800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@61233748[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:59.282 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 768000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@75b2399[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:00.468 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 29000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@796bf57b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:01.763 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053260331_117.143.60.138_58066, request = ConfigBatchListenRequest +09:01:01.871 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e03f7977853a9c78fa05c5ee81f1bd9e, Client-RequestTS=1727053260389, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +09:01:01.977 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e03f7977853a9c78fa05c5ee81f1bd9e, Client-RequestTS=1727053260389, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.087 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e03f7977853a9c78fa05c5ee81f1bd9e, Client-RequestTS=1727053260389, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e03f7977853a9c78fa05c5ee81f1bd9e, Client-RequestTS=1727053260389, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:44.571 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4b4d90e35866d2d35ac56b0ea24bfe93, Client-RequestTS=1726572584461, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:44.683 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4b4d90e35866d2d35ac56b0ea24bfe93, Client-RequestTS=1726572584461, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:29:44.791 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4b4d90e35866d2d35ac56b0ea24bfe93, Client-RequestTS=1726572584461, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:29:44.901 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4b4d90e35866d2d35ac56b0ea24bfe93, Client-RequestTS=1726572584461, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:29:44.901 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.370 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0b7b87776bc619f5a9b1770960c54c8f, Client-RequestTS=1727053262260, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.479 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0b7b87776bc619f5a9b1770960c54c8f, Client-RequestTS=1727053262260, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.588 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0b7b87776bc619f5a9b1770960c54c8f, Client-RequestTS=1727053262260, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0b7b87776bc619f5a9b1770960c54c8f, Client-RequestTS=1727053262260, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:45.057 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c68c7513da68e722a674b8237b0e3d92, Client-RequestTS=1726572584953, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:29:45.987 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [check,521] - Client don't receive server abilities table even empty table but server supports ability negotiation. You can check if it is need to adjust the timeout of ability negotiation by property: nacos.remote.client.grpc.channel.capability.negotiation.timeout if always fail to connect. -19:29:52.402 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 611700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@71a8b67a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:52.405 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 611700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@71a8b67a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 611700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@71a8b67a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 14 common frames omitted -19:29:56.707 [boundedElastic-5] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 640300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@10e6ef96[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:56.707 [boundedElastic-22] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 831301 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5eb85cca[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:56.707 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 111700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12f0a07f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:56.707 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 821300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@74966599[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:56.707 [boundedElastic-19] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4eeca573[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:56.708 [boundedElastic-5] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-system] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 640300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@10e6ef96[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 640300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@10e6ef96[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:29:56.708 [boundedElastic-22] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-file] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 831301 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5eb85cca[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 831301 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5eb85cca[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:29:56.709 [boundedElastic-23] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-monitor] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 821300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@74966599[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 821300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@74966599[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:29:56.709 [boundedElastic-10] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-system] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 111700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12f0a07f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 111700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12f0a07f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:29:56.709 [boundedElastic-19] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-file] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4eeca573[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4eeca573[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:29:58.060 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 874201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f2a9d4d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:58.060 [boundedElastic-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 875500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d11ca89[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:58.060 [boundedElastic-25] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 874500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7db1dd0a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:58.060 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 834800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a5e5b0c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:58.060 [boundedElastic-27] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-system] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 874201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f2a9d4d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 874201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f2a9d4d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:29:58.061 [boundedElastic-25] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 874500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7db1dd0a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 874500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7db1dd0a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 19 common frames omitted -19:29:58.061 [boundedElastic-7] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-monitor] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 875500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d11ca89[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 875500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d11ca89[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:29:58.061 [boundedElastic-28] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-file] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 834800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a5e5b0c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 834800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a5e5b0c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:29:58.423 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 990001 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@526d3030[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:29:58.425 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 990001 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@526d3030[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 990001 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@526d3030[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 14 common frames omitted -19:30:01.507 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:30:01.614 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:30:01.723 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:30:01.831 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:30:01.831 [boundedElastic-10] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.867 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d1377fdb5d8f0758483b910bd2f7a5f, Client-RequestTS=1727053262757, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.976 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d1377fdb5d8f0758483b910bd2f7a5f, Client-RequestTS=1727053262757, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.086 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d1377fdb5d8f0758483b910bd2f7a5f, Client-RequestTS=1727053262757, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d1377fdb5d8f0758483b910bd2f7a5f, Client-RequestTS=1727053262757, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) - at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:12.195 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 490999 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@12d3f4a1[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:15.308 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 873200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@668558b0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:18.516 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 953200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7349eb04[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:21.503 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:30:21.603 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:30:21.706 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:30:21.816 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:30:21.816 [boundedElastic-27] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:03.370 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=85a529d9113f767c9c7e43dce3224756, Client-RequestTS=1727053263259, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.477 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=85a529d9113f767c9c7e43dce3224756, Client-RequestTS=1727053263259, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.587 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=85a529d9113f767c9c7e43dce3224756, Client-RequestTS=1727053263259, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.689 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=85a529d9113f767c9c7e43dce3224756, Client-RequestTS=1727053263259, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.689 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) - at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:21.832 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 357301 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4cb2fab6[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:03.846 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0347ba1c2e984113fd9e0c5a6431d77, Client-RequestTS=1727053263744, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0347ba1c2e984113fd9e0c5a6431d77, Client-RequestTS=1727053263744, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.055 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0347ba1c2e984113fd9e0c5a6431d77, Client-RequestTS=1727053263744, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.165 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0347ba1c2e984113fd9e0c5a6431d77, Client-RequestTS=1727053263744, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.165 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:04.336 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fe4a93703e54da72ef92af87843ca9bf, Client-RequestTS=1727053264227, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.445 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fe4a93703e54da72ef92af87843ca9bf, Client-RequestTS=1727053264227, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.546 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fe4a93703e54da72ef92af87843ca9bf, Client-RequestTS=1727053264227, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.661 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fe4a93703e54da72ef92af87843ca9bf, Client-RequestTS=1727053264227, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.661 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:04.771 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 721900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4ac3ec4a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:24.402 [boundedElastic-19] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=057fb81b80464d646fbc942f928cc2ae, Client-RequestTS=1726572621396, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 260701 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@132c30dd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:28.512 [boundedElastic-31] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 412201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@d3cbb1c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:28.513 [boundedElastic-19] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 732700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@329e63de[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:28.513 [boundedElastic-31] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-file] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 412201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@d3cbb1c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 412201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@d3cbb1c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:30:28.513 [boundedElastic-19] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-gen] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 732700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@329e63de[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 732700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@329e63de[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:30:28.513 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 889500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@52d226bf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:28.513 [boundedElastic-28] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-system] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 889500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@52d226bf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 889500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@52d226bf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:30:28.513 [boundedElastic-32] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 544600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c982926[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:28.514 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 540700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7ac6a9d2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:28.514 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 540700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7ac6a9d2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at jdk.internal.reflect.GeneratedMethodAccessor119.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) - at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) - at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) - at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:04.833 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed3b1785cd7a317dbc7d45bd88189a0f, Client-RequestTS=1727053264724, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.943 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed3b1785cd7a317dbc7d45bd88189a0f, Client-RequestTS=1727053264724, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.043 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed3b1785cd7a317dbc7d45bd88189a0f, Client-RequestTS=1727053264724, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.146 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed3b1785cd7a317dbc7d45bd88189a0f, Client-RequestTS=1727053264724, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.146 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 540700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7ac6a9d2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 31 common frames omitted -19:30:28.514 [boundedElastic-32] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-monitor] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 544600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c982926[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.318 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=141271fda821b5dfbb5cab65d890b8a3, Client-RequestTS=1727053265209, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.426 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=141271fda821b5dfbb5cab65d890b8a3, Client-RequestTS=1727053265209, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.535 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=141271fda821b5dfbb5cab65d890b8a3, Client-RequestTS=1727053265209, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.646 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=141271fda821b5dfbb5cab65d890b8a3, Client-RequestTS=1727053265209, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.646 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.816 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9f82a205c5cb444c0ef55159dc48c8d5, Client-RequestTS=1727053265708, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.926 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9f82a205c5cb444c0ef55159dc48c8d5, Client-RequestTS=1727053265708, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.034 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9f82a205c5cb444c0ef55159dc48c8d5, Client-RequestTS=1727053265708, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.127 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49bf45512e8a94493682907e6af3e689, Client-RequestTS=1727053263119, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 244800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6519292a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:01:06.127 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 244800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6519292a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 244800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6519292a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:01:06.143 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9f82a205c5cb444c0ef55159dc48c8d5, Client-RequestTS=1727053265708, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.143 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:06.302 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=30a186a0f03f89883b5c8dc6eb324477, Client-RequestTS=1727053266191, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.302 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bab0bc9d4dd78e7db5c8a07bc1644188, Client-RequestTS=1727053266194, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.411 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=30a186a0f03f89883b5c8dc6eb324477, Client-RequestTS=1727053266191, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.411 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bab0bc9d4dd78e7db5c8a07bc1644188, Client-RequestTS=1727053266194, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.519 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=30a186a0f03f89883b5c8dc6eb324477, Client-RequestTS=1727053266191, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.519 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bab0bc9d4dd78e7db5c8a07bc1644188, Client-RequestTS=1727053266194, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.630 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=30a186a0f03f89883b5c8dc6eb324477, Client-RequestTS=1727053266191, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.630 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bab0bc9d4dd78e7db5c8a07bc1644188, Client-RequestTS=1727053266194, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.630 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:06.630 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:06.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2020387613eedf99da08afcb62d2b1a2, Client-RequestTS=1727053266692, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2020387613eedf99da08afcb62d2b1a2, Client-RequestTS=1727053266692, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.911 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2020387613eedf99da08afcb62d2b1a2, Client-RequestTS=1727053266692, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.911 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2020387613eedf99da08afcb62d2b1a2, Client-RequestTS=1727053266692, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.020 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2020387613eedf99da08afcb62d2b1a2, Client-RequestTS=1727053266692, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.130 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2020387613eedf99da08afcb62d2b1a2, Client-RequestTS=1727053266692, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.130 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:07.301 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9961177fa1d88b04ec718acb754697fb, Client-RequestTS=1727053267192, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.412 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9961177fa1d88b04ec718acb754697fb, Client-RequestTS=1727053267192, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.523 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9961177fa1d88b04ec718acb754697fb, Client-RequestTS=1727053267192, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.633 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9961177fa1d88b04ec718acb754697fb, Client-RequestTS=1727053267192, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.633 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:07.806 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2789717c63ead91d542efd49293a880a, Client-RequestTS=1727053267695, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.913 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2789717c63ead91d542efd49293a880a, Client-RequestTS=1727053267695, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.023 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2789717c63ead91d542efd49293a880a, Client-RequestTS=1727053267695, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.132 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2789717c63ead91d542efd49293a880a, Client-RequestTS=1727053267695, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.132 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:08.303 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc73ada53e77bc1ee2a854695ebcc2c7, Client-RequestTS=1727053268193, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.412 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc73ada53e77bc1ee2a854695ebcc2c7, Client-RequestTS=1727053268193, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.522 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc73ada53e77bc1ee2a854695ebcc2c7, Client-RequestTS=1727053268193, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.631 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc73ada53e77bc1ee2a854695ebcc2c7, Client-RequestTS=1727053268193, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.631 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:08.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aed08bbd131cfbde491225d308d369ca, Client-RequestTS=1727053268692, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aed08bbd131cfbde491225d308d369ca, Client-RequestTS=1727053268692, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.024 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aed08bbd131cfbde491225d308d369ca, Client-RequestTS=1727053268692, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aed08bbd131cfbde491225d308d369ca, Client-RequestTS=1727053268692, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:09.304 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8780915afd1b27c08a2e46e70d38e70, Client-RequestTS=1727053269196, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.413 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8780915afd1b27c08a2e46e70d38e70, Client-RequestTS=1727053269196, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.520 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8780915afd1b27c08a2e46e70d38e70, Client-RequestTS=1727053269196, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.630 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8780915afd1b27c08a2e46e70d38e70, Client-RequestTS=1727053269196, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.630 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:09.801 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d80fd3bc30c4aac44abac8cef971c5f5, Client-RequestTS=1727053269692, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.910 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d80fd3bc30c4aac44abac8cef971c5f5, Client-RequestTS=1727053269692, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.017 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d80fd3bc30c4aac44abac8cef971c5f5, Client-RequestTS=1727053269692, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.126 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d80fd3bc30c4aac44abac8cef971c5f5, Client-RequestTS=1727053269692, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.126 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:10.298 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae1aae7f92a3576b0637c0c544686e06, Client-RequestTS=1727053270189, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae1aae7f92a3576b0637c0c544686e06, Client-RequestTS=1727053270189, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.515 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae1aae7f92a3576b0637c0c544686e06, Client-RequestTS=1727053270189, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.623 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae1aae7f92a3576b0637c0c544686e06, Client-RequestTS=1727053270189, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.623 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:10.796 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=051528cde3e5ad5fdf27fbac770c710a, Client-RequestTS=1727053270686, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.906 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=051528cde3e5ad5fdf27fbac770c710a, Client-RequestTS=1727053270686, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.015 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=051528cde3e5ad5fdf27fbac770c710a, Client-RequestTS=1727053270686, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.124 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=051528cde3e5ad5fdf27fbac770c710a, Client-RequestTS=1727053270686, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.124 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:11.299 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45080ec44ef817152c162530d949361a, Client-RequestTS=1727053271188, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.406 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45080ec44ef817152c162530d949361a, Client-RequestTS=1727053271188, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.515 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45080ec44ef817152c162530d949361a, Client-RequestTS=1727053271188, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.625 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45080ec44ef817152c162530d949361a, Client-RequestTS=1727053271188, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.625 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:11.797 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c9a4b8a05e966d3abae43971542efa0f, Client-RequestTS=1727053271686, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.904 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c9a4b8a05e966d3abae43971542efa0f, Client-RequestTS=1727053271686, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.015 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c9a4b8a05e966d3abae43971542efa0f, Client-RequestTS=1727053271686, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.123 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c9a4b8a05e966d3abae43971542efa0f, Client-RequestTS=1727053271686, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.123 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:12.293 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f22b4d260d02118e199740a1ce3c8c96, Client-RequestTS=1727053272185, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.402 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f22b4d260d02118e199740a1ce3c8c96, Client-RequestTS=1727053272185, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.509 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f22b4d260d02118e199740a1ce3c8c96, Client-RequestTS=1727053272185, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.618 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f22b4d260d02118e199740a1ce3c8c96, Client-RequestTS=1727053272185, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.618 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:12.789 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b9f8bcd487906f32aaca40a2d50fb11, Client-RequestTS=1727053272680, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.896 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b9f8bcd487906f32aaca40a2d50fb11, Client-RequestTS=1727053272680, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.006 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b9f8bcd487906f32aaca40a2d50fb11, Client-RequestTS=1727053272680, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.115 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b9f8bcd487906f32aaca40a2d50fb11, Client-RequestTS=1727053272680, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.115 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:13.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c16a1916b3c735e841713c4f7b0cb415, Client-RequestTS=1727053273177, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.396 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c16a1916b3c735e841713c4f7b0cb415, Client-RequestTS=1727053273177, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.507 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c16a1916b3c735e841713c4f7b0cb415, Client-RequestTS=1727053273177, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.616 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c16a1916b3c735e841713c4f7b0cb415, Client-RequestTS=1727053273177, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.616 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:13.787 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=743ce1ccb4a04333db5b9014b983d1e6, Client-RequestTS=1727053273678, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=743ce1ccb4a04333db5b9014b983d1e6, Client-RequestTS=1727053273678, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.005 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=743ce1ccb4a04333db5b9014b983d1e6, Client-RequestTS=1727053273678, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.115 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=743ce1ccb4a04333db5b9014b983d1e6, Client-RequestTS=1727053273678, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.115 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.284 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=486b3e125b3e9e72c34cb8f24dc12211, Client-RequestTS=1727053274176, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.393 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=486b3e125b3e9e72c34cb8f24dc12211, Client-RequestTS=1727053274176, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=486b3e125b3e9e72c34cb8f24dc12211, Client-RequestTS=1727053274176, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.615 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=486b3e125b3e9e72c34cb8f24dc12211, Client-RequestTS=1727053274176, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.615 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=242ff9f25f02e72b12cf6f3eb224fc62, Client-RequestTS=1727053274676, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.896 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=242ff9f25f02e72b12cf6f3eb224fc62, Client-RequestTS=1727053274676, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.005 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=242ff9f25f02e72b12cf6f3eb224fc62, Client-RequestTS=1727053274676, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.114 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=242ff9f25f02e72b12cf6f3eb224fc62, Client-RequestTS=1727053274676, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.114 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.284 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1bdbd2be16e6d696edeac41385bddf9, Client-RequestTS=1727053275175, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1bdbd2be16e6d696edeac41385bddf9, Client-RequestTS=1727053275175, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.506 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1bdbd2be16e6d696edeac41385bddf9, Client-RequestTS=1727053275175, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.614 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1bdbd2be16e6d696edeac41385bddf9, Client-RequestTS=1727053275175, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.614 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=efe517de772f5d86f96734fa6e240b89, Client-RequestTS=1727053275677, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.896 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=efe517de772f5d86f96734fa6e240b89, Client-RequestTS=1727053275677, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.006 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=efe517de772f5d86f96734fa6e240b89, Client-RequestTS=1727053275677, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.115 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=efe517de772f5d86f96734fa6e240b89, Client-RequestTS=1727053275677, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.116 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.289 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f35e2c9ab539833ff4c3f0060b92eb4, Client-RequestTS=1727053276178, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.398 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f35e2c9ab539833ff4c3f0060b92eb4, Client-RequestTS=1727053276178, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.508 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f35e2c9ab539833ff4c3f0060b92eb4, Client-RequestTS=1727053276178, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.618 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8f35e2c9ab539833ff4c3f0060b92eb4, Client-RequestTS=1727053276178, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.618 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.788 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=14999dc129f6ec34f93e08cdeca7efe0, Client-RequestTS=1727053276681, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=14999dc129f6ec34f93e08cdeca7efe0, Client-RequestTS=1727053276681, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.998 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=14999dc129f6ec34f93e08cdeca7efe0, Client-RequestTS=1727053276681, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=14999dc129f6ec34f93e08cdeca7efe0, Client-RequestTS=1727053276681, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.251 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72d3171104cf4c5c52cda83a94748064, Client-RequestTS=1727053277150, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.364 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72d3171104cf4c5c52cda83a94748064, Client-RequestTS=1727053277150, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.472 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72d3171104cf4c5c52cda83a94748064, Client-RequestTS=1727053277150, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72d3171104cf4c5c52cda83a94748064, Client-RequestTS=1727053277150, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.746 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b0b51931c13ecc33ec1e0265e7851672, Client-RequestTS=1727053277644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.849 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b0b51931c13ecc33ec1e0265e7851672, Client-RequestTS=1727053277644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b0b51931c13ecc33ec1e0265e7851672, Client-RequestTS=1727053277644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.066 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b0b51931c13ecc33ec1e0265e7851672, Client-RequestTS=1727053277644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.066 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.236 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=38e78583faab9a20dda54b5664d6e9db, Client-RequestTS=1727053278128, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.346 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=38e78583faab9a20dda54b5664d6e9db, Client-RequestTS=1727053278128, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.457 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=38e78583faab9a20dda54b5664d6e9db, Client-RequestTS=1727053278128, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.569 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=38e78583faab9a20dda54b5664d6e9db, Client-RequestTS=1727053278128, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.569 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.743 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc7128c98fc1e96e130b943ae08516db, Client-RequestTS=1727053278633, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.844 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc7128c98fc1e96e130b943ae08516db, Client-RequestTS=1727053278633, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc7128c98fc1e96e130b943ae08516db, Client-RequestTS=1727053278633, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.059 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc7128c98fc1e96e130b943ae08516db, Client-RequestTS=1727053278633, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.060 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.233 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f36b3fbf71838c4b339e1120cc2db653, Client-RequestTS=1727053279124, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.341 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f36b3fbf71838c4b339e1120cc2db653, Client-RequestTS=1727053279124, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.441 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f36b3fbf71838c4b339e1120cc2db653, Client-RequestTS=1727053279124, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.546 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f36b3fbf71838c4b339e1120cc2db653, Client-RequestTS=1727053279124, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.546 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=febbf3520be57de28e414e23ab1d1393, Client-RequestTS=1727053279609, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.825 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=febbf3520be57de28e414e23ab1d1393, Client-RequestTS=1727053279609, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.934 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=febbf3520be57de28e414e23ab1d1393, Client-RequestTS=1727053279609, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.046 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=febbf3520be57de28e414e23ab1d1393, Client-RequestTS=1727053279609, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.046 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:20.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=845e24f83b8eb26617499124f343ab08, Client-RequestTS=1727053280109, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.326 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=845e24f83b8eb26617499124f343ab08, Client-RequestTS=1727053280109, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=845e24f83b8eb26617499124f343ab08, Client-RequestTS=1727053280109, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.545 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=845e24f83b8eb26617499124f343ab08, Client-RequestTS=1727053280109, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.545 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:20.717 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fd635e89908f1dda855ccf7d164d5514, Client-RequestTS=1727053280608, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.826 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fd635e89908f1dda855ccf7d164d5514, Client-RequestTS=1727053280608, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.935 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fd635e89908f1dda855ccf7d164d5514, Client-RequestTS=1727053280608, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.046 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fd635e89908f1dda855ccf7d164d5514, Client-RequestTS=1727053280608, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.046 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.215 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a7c13b8dc8d0051db495ff8393d6a44e, Client-RequestTS=1727053281108, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a7c13b8dc8d0051db495ff8393d6a44e, Client-RequestTS=1727053281108, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.356 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 445700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@47c7f63c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 544600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c982926[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a7c13b8dc8d0051db495ff8393d6a44e, Client-RequestTS=1727053281108, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.543 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a7c13b8dc8d0051db495ff8393d6a44e, Client-RequestTS=1727053281108, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.543 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03711508a346790756bb3cb579b0df9f, Client-RequestTS=1727053281594, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.810 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03711508a346790756bb3cb579b0df9f, Client-RequestTS=1727053281594, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.918 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03711508a346790756bb3cb579b0df9f, Client-RequestTS=1727053281594, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.026 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03711508a346790756bb3cb579b0df9f, Client-RequestTS=1727053281594, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.026 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:22.196 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2b22b936a0e7d4f7566ca3c6e591988, Client-RequestTS=1727053282088, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.306 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2b22b936a0e7d4f7566ca3c6e591988, Client-RequestTS=1727053282088, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2b22b936a0e7d4f7566ca3c6e591988, Client-RequestTS=1727053282088, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.523 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2b22b936a0e7d4f7566ca3c6e591988, Client-RequestTS=1727053282088, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.523 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:22.693 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6f7af3f99afa82d8af0ba3120b2bb61, Client-RequestTS=1727053282586, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.802 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6f7af3f99afa82d8af0ba3120b2bb61, Client-RequestTS=1727053282586, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.913 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6f7af3f99afa82d8af0ba3120b2bb61, Client-RequestTS=1727053282586, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.022 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6f7af3f99afa82d8af0ba3120b2bb61, Client-RequestTS=1727053282586, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.022 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:23.194 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=830b764cfc48b3e81ecfcbdbb233ce01, Client-RequestTS=1727053283085, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.305 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=830b764cfc48b3e81ecfcbdbb233ce01, Client-RequestTS=1727053283085, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.416 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=830b764cfc48b3e81ecfcbdbb233ce01, Client-RequestTS=1727053283085, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.526 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=830b764cfc48b3e81ecfcbdbb233ce01, Client-RequestTS=1727053283085, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.526 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:23.698 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=27254e6125b32f701527b86d4eac184c, Client-RequestTS=1727053283588, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=27254e6125b32f701527b86d4eac184c, Client-RequestTS=1727053283588, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.908 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=27254e6125b32f701527b86d4eac184c, Client-RequestTS=1727053283588, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.009 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=27254e6125b32f701527b86d4eac184c, Client-RequestTS=1727053283588, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.009 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:24.160 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca46961e25947a6b0e0b562e4ee128b8, Client-RequestTS=1727053284060, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.261 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca46961e25947a6b0e0b562e4ee128b8, Client-RequestTS=1727053284060, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.367 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca46961e25947a6b0e0b562e4ee128b8, Client-RequestTS=1727053284060, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.478 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca46961e25947a6b0e0b562e4ee128b8, Client-RequestTS=1727053284060, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.478 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 523600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5f83a949[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:30:28.515 [boundedElastic-30] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 472300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a6c030d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:28.515 [boundedElastic-30] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-monitor] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 472300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a6c030d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 472300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a6c030d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:24.478 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:24.648 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf7d6cd0ade1659d2f8ae5a1a05d7935, Client-RequestTS=1727053284539, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.757 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf7d6cd0ade1659d2f8ae5a1a05d7935, Client-RequestTS=1727053284539, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.867 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf7d6cd0ade1659d2f8ae5a1a05d7935, Client-RequestTS=1727053284539, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.974 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf7d6cd0ade1659d2f8ae5a1a05d7935, Client-RequestTS=1727053284539, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.974 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:25.144 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9cb30c99f270397719c089c3924da446, Client-RequestTS=1727053285035, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.245 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9cb30c99f270397719c089c3924da446, Client-RequestTS=1727053285035, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.348 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9cb30c99f270397719c089c3924da446, Client-RequestTS=1727053285035, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.457 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9cb30c99f270397719c089c3924da446, Client-RequestTS=1727053285035, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.457 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:25.628 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed708a12dc7c84a58c53d1cf1638689e, Client-RequestTS=1727053285521, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.737 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed708a12dc7c84a58c53d1cf1638689e, Client-RequestTS=1727053285521, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.846 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed708a12dc7c84a58c53d1cf1638689e, Client-RequestTS=1727053285521, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.954 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed708a12dc7c84a58c53d1cf1638689e, Client-RequestTS=1727053285521, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.954 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:26.126 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e7237e3c2afa79d6c1df78f5c4ab1ee7, Client-RequestTS=1727053286017, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.236 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e7237e3c2afa79d6c1df78f5c4ab1ee7, Client-RequestTS=1727053286017, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.345 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e7237e3c2afa79d6c1df78f5c4ab1ee7, Client-RequestTS=1727053286017, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.446 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e7237e3c2afa79d6c1df78f5c4ab1ee7, Client-RequestTS=1727053286017, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.446 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:26.611 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e907e9d7f66dcc9d517479839f0f232a, Client-RequestTS=1727053286505, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e907e9d7f66dcc9d517479839f0f232a, Client-RequestTS=1727053286505, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.831 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e907e9d7f66dcc9d517479839f0f232a, Client-RequestTS=1727053286505, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.939 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e907e9d7f66dcc9d517479839f0f232a, Client-RequestTS=1727053286505, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.939 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:27.109 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9082d59c0f8e11c6bd3563e5c2cc1a84, Client-RequestTS=1727053287000, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.217 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9082d59c0f8e11c6bd3563e5c2cc1a84, Client-RequestTS=1727053287000, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.327 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9082d59c0f8e11c6bd3563e5c2cc1a84, Client-RequestTS=1727053287000, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.436 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9082d59c0f8e11c6bd3563e5c2cc1a84, Client-RequestTS=1727053287000, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.436 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:27.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=459d376ac85fb01cf2d558758535707e, Client-RequestTS=1727053287499, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.687 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 508800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@51b37490[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:30:28.528 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 85200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66346183[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:28.528 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 85200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66346183[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:27.719 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=459d376ac85fb01cf2d558758535707e, Client-RequestTS=1727053287499, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.829 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=459d376ac85fb01cf2d558758535707e, Client-RequestTS=1727053287499, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.939 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=459d376ac85fb01cf2d558758535707e, Client-RequestTS=1727053287499, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.939 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:28.110 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb6fb9b16ab90ae801a02dc9e41bf62e, Client-RequestTS=1727053288001, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.219 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb6fb9b16ab90ae801a02dc9e41bf62e, Client-RequestTS=1727053288001, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.327 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb6fb9b16ab90ae801a02dc9e41bf62e, Client-RequestTS=1727053288001, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb6fb9b16ab90ae801a02dc9e41bf62e, Client-RequestTS=1727053288001, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:28.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=70add959714aa17263e5e6d5b99e2175, Client-RequestTS=1727053288500, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=70add959714aa17263e5e6d5b99e2175, Client-RequestTS=1727053288500, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.829 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=70add959714aa17263e5e6d5b99e2175, Client-RequestTS=1727053288500, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.937 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=70add959714aa17263e5e6d5b99e2175, Client-RequestTS=1727053288500, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.937 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:29.106 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=08670891b2ed30589da189b2c6db16b3, Client-RequestTS=1727053288999, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.216 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=08670891b2ed30589da189b2c6db16b3, Client-RequestTS=1727053288999, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=08670891b2ed30589da189b2c6db16b3, Client-RequestTS=1727053288999, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=08670891b2ed30589da189b2c6db16b3, Client-RequestTS=1727053288999, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:29.605 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9cfdcd315325043c10697be06138653e, Client-RequestTS=1727053289496, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.716 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9cfdcd315325043c10697be06138653e, Client-RequestTS=1727053289496, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.824 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9cfdcd315325043c10697be06138653e, Client-RequestTS=1727053289496, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.925 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9cfdcd315325043c10697be06138653e, Client-RequestTS=1727053289496, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.925 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:30.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.198 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.308 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:30.588 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f956eae4849e04c445978f33b9526d0, Client-RequestTS=1727053290477, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f956eae4849e04c445978f33b9526d0, Client-RequestTS=1727053290477, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f956eae4849e04c445978f33b9526d0, Client-RequestTS=1727053290477, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f956eae4849e04c445978f33b9526d0, Client-RequestTS=1727053290477, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:31.010 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 874400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f9d1bee[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:31.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=293f63c4d079464534281c8500740fd1, Client-RequestTS=1727053290980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=293f63c4d079464534281c8500740fd1, Client-RequestTS=1727053290980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.308 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=293f63c4d079464534281c8500740fd1, Client-RequestTS=1727053290980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=293f63c4d079464534281c8500740fd1, Client-RequestTS=1727053290980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:31.591 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ee124321dc6e9269e48bf3f22aed433, Client-RequestTS=1727053291481, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ee124321dc6e9269e48bf3f22aed433, Client-RequestTS=1727053291481, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.810 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ee124321dc6e9269e48bf3f22aed433, Client-RequestTS=1727053291481, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.918 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ee124321dc6e9269e48bf3f22aed433, Client-RequestTS=1727053291481, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.918 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:32.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=75fd3aa2a811a229b7163763f9833a14, Client-RequestTS=1727053291980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=75fd3aa2a811a229b7163763f9833a14, Client-RequestTS=1727053291980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.306 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=75fd3aa2a811a229b7163763f9833a14, Client-RequestTS=1727053291980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.416 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=75fd3aa2a811a229b7163763f9833a14, Client-RequestTS=1727053291980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.416 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:32.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9dd2851bd516f4da0744147d137fe591, Client-RequestTS=1727053292478, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.698 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9dd2851bd516f4da0744147d137fe591, Client-RequestTS=1727053292478, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9dd2851bd516f4da0744147d137fe591, Client-RequestTS=1727053292478, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9dd2851bd516f4da0744147d137fe591, Client-RequestTS=1727053292478, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:33.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7b80849e5a7a1eb695bdbac6549b14d, Client-RequestTS=1727053292980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.198 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7b80849e5a7a1eb695bdbac6549b14d, Client-RequestTS=1727053292980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.307 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7b80849e5a7a1eb695bdbac6549b14d, Client-RequestTS=1727053292980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.415 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7b80849e5a7a1eb695bdbac6549b14d, Client-RequestTS=1727053292980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.415 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:33.587 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7bdb68a7b767137f8f324bb8071cce47, Client-RequestTS=1727053293478, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.696 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7bdb68a7b767137f8f324bb8071cce47, Client-RequestTS=1727053293478, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.804 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7bdb68a7b767137f8f324bb8071cce47, Client-RequestTS=1727053293478, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7bdb68a7b767137f8f324bb8071cce47, Client-RequestTS=1727053293478, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:34.076 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a2882279954c674e0b946e55302a4d6, Client-RequestTS=1727053293974, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a2882279954c674e0b946e55302a4d6, Client-RequestTS=1727053293974, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a2882279954c674e0b946e55302a4d6, Client-RequestTS=1727053293974, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.396 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a2882279954c674e0b946e55302a4d6, Client-RequestTS=1727053293974, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.396 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:34.427 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 395700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@d5bed4c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:34.569 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0381c1d8e5aedc54005b12371295fa56, Client-RequestTS=1727053294458, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.678 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0381c1d8e5aedc54005b12371295fa56, Client-RequestTS=1727053294458, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.789 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0381c1d8e5aedc54005b12371295fa56, Client-RequestTS=1727053294458, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.900 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0381c1d8e5aedc54005b12371295fa56, Client-RequestTS=1727053294458, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.900 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:35.069 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7b58b0d0d63a9dbeeaf84623c833c5bc, Client-RequestTS=1727053294962, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.178 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7b58b0d0d63a9dbeeaf84623c833c5bc, Client-RequestTS=1727053294962, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.279 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7b58b0d0d63a9dbeeaf84623c833c5bc, Client-RequestTS=1727053294962, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.379 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7b58b0d0d63a9dbeeaf84623c833c5bc, Client-RequestTS=1727053294962, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.379 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:35.532 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2e4f5abfd27d059843f3a7fb00bdbd7, Client-RequestTS=1727053295431, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.633 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2e4f5abfd27d059843f3a7fb00bdbd7, Client-RequestTS=1727053295431, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.734 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2e4f5abfd27d059843f3a7fb00bdbd7, Client-RequestTS=1727053295431, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.838 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2e4f5abfd27d059843f3a7fb00bdbd7, Client-RequestTS=1727053295431, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.838 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:36.009 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2ddcd943d6420dc88fcad66e57bff15d, Client-RequestTS=1727053295900, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:56.629 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 570900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6e9a9fe5[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:00.245 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d75cc4230b4a66b82372118b67316b6f, Client-RequestTS=1727053317236, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 664100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@62fcea33[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:02:00.245 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 664100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@62fcea33[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 664100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@62fcea33[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:02:00.397 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5e82ffdb3eeb5491fc8274917a252234, Client-RequestTS=1727053320296, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:00.509 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5e82ffdb3eeb5491fc8274917a252234, Client-RequestTS=1727053320296, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:00.616 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5e82ffdb3eeb5491fc8274917a252234, Client-RequestTS=1727053320296, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:00.724 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5e82ffdb3eeb5491fc8274917a252234, Client-RequestTS=1727053320296, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:00.724 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:00.895 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=654ba45b3567da30f043f077d2e79945, Client-RequestTS=1727053320788, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.004 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=654ba45b3567da30f043f077d2e79945, Client-RequestTS=1727053320788, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.114 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=654ba45b3567da30f043f077d2e79945, Client-RequestTS=1727053320788, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.193 [boundedElastic-55] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c093649ecb2d00eb849d7599a97f5def, Client-RequestTS=1727053318186, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 164700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@51fbd54f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:02:01.224 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=654ba45b3567da30f043f077d2e79945, Client-RequestTS=1727053320788, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.224 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:01.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5170bcd2b271465beceb2bd74e8b9fc9, Client-RequestTS=1727053321285, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.503 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5170bcd2b271465beceb2bd74e8b9fc9, Client-RequestTS=1727053321285, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.611 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5170bcd2b271465beceb2bd74e8b9fc9, Client-RequestTS=1727053321285, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.720 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5170bcd2b271465beceb2bd74e8b9fc9, Client-RequestTS=1727053321285, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:01.720 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:01.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f94cd58b02f7a8efa69c9aefae24b071, Client-RequestTS=1727053321783, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f94cd58b02f7a8efa69c9aefae24b071, Client-RequestTS=1727053321783, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.111 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f94cd58b02f7a8efa69c9aefae24b071, Client-RequestTS=1727053321783, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f94cd58b02f7a8efa69c9aefae24b071, Client-RequestTS=1727053321783, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:02.389 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6a42ecab304a03821e31a3f592544ee, Client-RequestTS=1727053322281, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.499 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6a42ecab304a03821e31a3f592544ee, Client-RequestTS=1727053322281, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.610 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6a42ecab304a03821e31a3f592544ee, Client-RequestTS=1727053322281, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.719 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6a42ecab304a03821e31a3f592544ee, Client-RequestTS=1727053322281, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.719 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:02.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76655f5f27c0ebf1dd8ac6a201a0e832, Client-RequestTS=1727053322783, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:02.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76655f5f27c0ebf1dd8ac6a201a0e832, Client-RequestTS=1727053322783, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:03.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76655f5f27c0ebf1dd8ac6a201a0e832, Client-RequestTS=1727053322783, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:03.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76655f5f27c0ebf1dd8ac6a201a0e832, Client-RequestTS=1727053322783, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:03.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:03.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a1f27aa7511c98351e418e2af855ef13, Client-RequestTS=1727053323280, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:03.498 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a1f27aa7511c98351e418e2af855ef13, Client-RequestTS=1727053323280, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:03.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a1f27aa7511c98351e418e2af855ef13, Client-RequestTS=1727053323280, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:03.717 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a1f27aa7511c98351e418e2af855ef13, Client-RequestTS=1727053323280, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:03.717 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:03.892 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0a5f3b9d2f146bf0febe68c504b61ab0, Client-RequestTS=1727053323779, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.000 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0a5f3b9d2f146bf0febe68c504b61ab0, Client-RequestTS=1727053323779, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0a5f3b9d2f146bf0febe68c504b61ab0, Client-RequestTS=1727053323779, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0a5f3b9d2f146bf0febe68c504b61ab0, Client-RequestTS=1727053323779, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:04.380 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb1ce5512bfe97d012042c9f9028e091, Client-RequestTS=1727053324279, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.481 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb1ce5512bfe97d012042c9f9028e091, Client-RequestTS=1727053324279, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb1ce5512bfe97d012042c9f9028e091, Client-RequestTS=1727053324279, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.682 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fb1ce5512bfe97d012042c9f9028e091, Client-RequestTS=1727053324279, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.682 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:04.840 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d4f0b7bf96e95d7579add6e06de3f1b, Client-RequestTS=1727053324733, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:04.941 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d4f0b7bf96e95d7579add6e06de3f1b, Client-RequestTS=1727053324733, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.043 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d4f0b7bf96e95d7579add6e06de3f1b, Client-RequestTS=1727053324733, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.145 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d4f0b7bf96e95d7579add6e06de3f1b, Client-RequestTS=1727053324733, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.145 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:05.310 [boundedElastic-57] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=271385c0deb53644bafbd34ac23ea57f, Client-RequestTS=1727053325204, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.310 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4de1b2ef1fdba906ac2f6d6224b06fb3, Client-RequestTS=1727053325199, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.419 [boundedElastic-57] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=271385c0deb53644bafbd34ac23ea57f, Client-RequestTS=1727053325204, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.419 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4de1b2ef1fdba906ac2f6d6224b06fb3, Client-RequestTS=1727053325199, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.530 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4de1b2ef1fdba906ac2f6d6224b06fb3, Client-RequestTS=1727053325199, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.530 [boundedElastic-57] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=271385c0deb53644bafbd34ac23ea57f, Client-RequestTS=1727053325204, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.641 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4de1b2ef1fdba906ac2f6d6224b06fb3, Client-RequestTS=1727053325199, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.640 [boundedElastic-57] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=271385c0deb53644bafbd34ac23ea57f, Client-RequestTS=1727053325204, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.641 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:05.815 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=93eff40bf84533d7c6d82bb74f40ee42, Client-RequestTS=1727053325705, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:05.924 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=93eff40bf84533d7c6d82bb74f40ee42, Client-RequestTS=1727053325705, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:06.036 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=93eff40bf84533d7c6d82bb74f40ee42, Client-RequestTS=1727053325705, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:06.145 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=93eff40bf84533d7c6d82bb74f40ee42, Client-RequestTS=1727053325705, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:06.145 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:06.302 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=af7b088ad1d6c83932a689b0fc8f9546, Client-RequestTS=1727053326197, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:06.412 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=af7b088ad1d6c83932a689b0fc8f9546, Client-RequestTS=1727053326197, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:06.521 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=af7b088ad1d6c83932a689b0fc8f9546, Client-RequestTS=1727053326197, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:06.630 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=af7b088ad1d6c83932a689b0fc8f9546, Client-RequestTS=1727053326197, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:06.630 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:06.802 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b01c2cb23db647f4ca9fe2c51617beac, Client-RequestTS=1727053326692, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:06.910 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b01c2cb23db647f4ca9fe2c51617beac, Client-RequestTS=1727053326692, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:07.019 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b01c2cb23db647f4ca9fe2c51617beac, Client-RequestTS=1727053326692, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:07.128 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b01c2cb23db647f4ca9fe2c51617beac, Client-RequestTS=1727053326692, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:07.128 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:07.300 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8cb6a10654ff709f8a88e6e6b2a523cf, Client-RequestTS=1727053327190, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:07.409 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8cb6a10654ff709f8a88e6e6b2a523cf, Client-RequestTS=1727053327190, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:07.518 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8cb6a10654ff709f8a88e6e6b2a523cf, Client-RequestTS=1727053327190, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:07.628 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8cb6a10654ff709f8a88e6e6b2a523cf, Client-RequestTS=1727053327190, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:07.628 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:07.799 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=698e1ae9701b35199ee29e6a3db54b48, Client-RequestTS=1727053327691, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:07.909 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=698e1ae9701b35199ee29e6a3db54b48, Client-RequestTS=1727053327691, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:08.020 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=698e1ae9701b35199ee29e6a3db54b48, Client-RequestTS=1727053327691, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:08.128 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=698e1ae9701b35199ee29e6a3db54b48, Client-RequestTS=1727053327691, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:08.128 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:08.299 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66fff6010143e7af2fb286088a24b2df, Client-RequestTS=1727053328191, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:08.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66fff6010143e7af2fb286088a24b2df, Client-RequestTS=1727053328191, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:08.514 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66fff6010143e7af2fb286088a24b2df, Client-RequestTS=1727053328191, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:08.624 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66fff6010143e7af2fb286088a24b2df, Client-RequestTS=1727053328191, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:08.624 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:08.796 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=95049c8fdbe2be2bd4d14c3bbdb46c28, Client-RequestTS=1727053328687, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:08.906 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=95049c8fdbe2be2bd4d14c3bbdb46c28, Client-RequestTS=1727053328687, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:09.014 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=95049c8fdbe2be2bd4d14c3bbdb46c28, Client-RequestTS=1727053328687, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:09.122 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=95049c8fdbe2be2bd4d14c3bbdb46c28, Client-RequestTS=1727053328687, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:09.122 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:09.294 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=13b29fc3316fa2a18652b4a0c6e0742d, Client-RequestTS=1727053329185, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:09.406 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=13b29fc3316fa2a18652b4a0c6e0742d, Client-RequestTS=1727053329185, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:09.514 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=13b29fc3316fa2a18652b4a0c6e0742d, Client-RequestTS=1727053329185, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:09.623 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=13b29fc3316fa2a18652b4a0c6e0742d, Client-RequestTS=1727053329185, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:09.623 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:09.793 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6d0d41109060c1a03d347c6f83b33c3, Client-RequestTS=1727053329685, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:09.903 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6d0d41109060c1a03d347c6f83b33c3, Client-RequestTS=1727053329685, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:10.013 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6d0d41109060c1a03d347c6f83b33c3, Client-RequestTS=1727053329685, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:10.123 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6d0d41109060c1a03d347c6f83b33c3, Client-RequestTS=1727053329685, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:10.123 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:10.294 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d838b437d6c4da2206b13c3179f39984, Client-RequestTS=1727053330185, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:10.404 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d838b437d6c4da2206b13c3179f39984, Client-RequestTS=1727053330185, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:10.513 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d838b437d6c4da2206b13c3179f39984, Client-RequestTS=1727053330185, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:10.623 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d838b437d6c4da2206b13c3179f39984, Client-RequestTS=1727053330185, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:10.623 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:10.792 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2e72358a0b037b432e3e6d3b0c69ccad, Client-RequestTS=1727053330685, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:10.903 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2e72358a0b037b432e3e6d3b0c69ccad, Client-RequestTS=1727053330685, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:11.011 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2e72358a0b037b432e3e6d3b0c69ccad, Client-RequestTS=1727053330685, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:11.121 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2e72358a0b037b432e3e6d3b0c69ccad, Client-RequestTS=1727053330685, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:11.121 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:11.291 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d9f9d34ac4a1b293e7374efc952997d, Client-RequestTS=1727053331183, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:11.401 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d9f9d34ac4a1b293e7374efc952997d, Client-RequestTS=1727053331183, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:11.513 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d9f9d34ac4a1b293e7374efc952997d, Client-RequestTS=1727053331183, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:11.622 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d9f9d34ac4a1b293e7374efc952997d, Client-RequestTS=1727053331183, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:11.622 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:11.792 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1b0d3c46e28f947fd603c7124818acac, Client-RequestTS=1727053331683, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:11.902 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1b0d3c46e28f947fd603c7124818acac, Client-RequestTS=1727053331683, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:12.011 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1b0d3c46e28f947fd603c7124818acac, Client-RequestTS=1727053331683, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:12.120 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1b0d3c46e28f947fd603c7124818acac, Client-RequestTS=1727053331683, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:12.120 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:12.291 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=843bf453b4a624e838527441fe70ec68, Client-RequestTS=1727053332183, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:12.400 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=843bf453b4a624e838527441fe70ec68, Client-RequestTS=1727053332183, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:12.508 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=843bf453b4a624e838527441fe70ec68, Client-RequestTS=1727053332183, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:12.618 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=843bf453b4a624e838527441fe70ec68, Client-RequestTS=1727053332183, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:12.618 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:12.790 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=57d767f2bee0639ad64902a1690a483a, Client-RequestTS=1727053332682, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:12.898 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=57d767f2bee0639ad64902a1690a483a, Client-RequestTS=1727053332682, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:13.006 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=57d767f2bee0639ad64902a1690a483a, Client-RequestTS=1727053332682, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:13.083 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 144400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7371592e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:13.115 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=57d767f2bee0639ad64902a1690a483a, Client-RequestTS=1727053332682, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:13.115 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:13.284 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51cbd07ffa0273b43fe1990578094202, Client-RequestTS=1727053333176, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:13.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51cbd07ffa0273b43fe1990578094202, Client-RequestTS=1727053333176, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:13.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51cbd07ffa0273b43fe1990578094202, Client-RequestTS=1727053333176, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:13.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51cbd07ffa0273b43fe1990578094202, Client-RequestTS=1727053333176, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:13.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:13.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=20baa3b3ce55b623fdf0df3da5c66142, Client-RequestTS=1727053333675, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:13.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=20baa3b3ce55b623fdf0df3da5c66142, Client-RequestTS=1727053333675, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.008 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=20baa3b3ce55b623fdf0df3da5c66142, Client-RequestTS=1727053333675, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=20baa3b3ce55b623fdf0df3da5c66142, Client-RequestTS=1727053333675, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:14.290 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03550d646cc1b1261c3beb30c3d0bcd2, Client-RequestTS=1727053334180, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.321 [boundedElastic-55] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fdebb2e21a330b8bf2a894346fe816a6, Client-RequestTS=1727053334217, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.398 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03550d646cc1b1261c3beb30c3d0bcd2, Client-RequestTS=1727053334180, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.429 [boundedElastic-55] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fdebb2e21a330b8bf2a894346fe816a6, Client-RequestTS=1727053334217, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.506 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03550d646cc1b1261c3beb30c3d0bcd2, Client-RequestTS=1727053334180, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.537 [boundedElastic-55] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fdebb2e21a330b8bf2a894346fe816a6, Client-RequestTS=1727053334217, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.615 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=03550d646cc1b1261c3beb30c3d0bcd2, Client-RequestTS=1727053334180, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.615 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:14.646 [boundedElastic-55] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fdebb2e21a330b8bf2a894346fe816a6, Client-RequestTS=1727053334217, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.787 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b54c6c2617a85fffefaebebff7e263e9, Client-RequestTS=1727053334678, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b54c6c2617a85fffefaebebff7e263e9, Client-RequestTS=1727053334678, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:14.990 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b54c6c2617a85fffefaebebff7e263e9, Client-RequestTS=1727053334678, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:15.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b54c6c2617a85fffefaebebff7e263e9, Client-RequestTS=1727053334678, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:15.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:15.272 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4bbb86480eef241ed46618e81ce6895, Client-RequestTS=1727053335161, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:15.379 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4bbb86480eef241ed46618e81ce6895, Client-RequestTS=1727053335161, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:15.394 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 612200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4a483b30[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:15.487 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4bbb86480eef241ed46618e81ce6895, Client-RequestTS=1727053335161, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:15.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4bbb86480eef241ed46618e81ce6895, Client-RequestTS=1727053335161, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:15.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:15.770 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d1e037e46f0cb6c7bc1faeaf5b4a0777, Client-RequestTS=1727053335662, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:15.879 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d1e037e46f0cb6c7bc1faeaf5b4a0777, Client-RequestTS=1727053335662, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:15.988 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d1e037e46f0cb6c7bc1faeaf5b4a0777, Client-RequestTS=1727053335662, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:16.096 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d1e037e46f0cb6c7bc1faeaf5b4a0777, Client-RequestTS=1727053335662, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:16.096 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:16.269 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c3c2357517c46d8b822c925118f75b80, Client-RequestTS=1727053336158, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:16.378 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c3c2357517c46d8b822c925118f75b80, Client-RequestTS=1727053336158, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:16.487 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c3c2357517c46d8b822c925118f75b80, Client-RequestTS=1727053336158, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:16.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c3c2357517c46d8b822c925118f75b80, Client-RequestTS=1727053336158, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:16.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:16.766 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d05f568981c32987caa6c0001532cd5, Client-RequestTS=1727053336658, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:16.875 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d05f568981c32987caa6c0001532cd5, Client-RequestTS=1727053336658, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:16.983 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d05f568981c32987caa6c0001532cd5, Client-RequestTS=1727053336658, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d05f568981c32987caa6c0001532cd5, Client-RequestTS=1727053336658, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:17.264 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e6a0609fa12f76565cdf6848dca823d3, Client-RequestTS=1727053337156, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.371 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e6a0609fa12f76565cdf6848dca823d3, Client-RequestTS=1727053337156, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.482 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e6a0609fa12f76565cdf6848dca823d3, Client-RequestTS=1727053337156, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e6a0609fa12f76565cdf6848dca823d3, Client-RequestTS=1727053337156, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:17.746 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0ccd09aa77102100570b2c4f44213bbd, Client-RequestTS=1727053334742, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 693500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59d9480a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:02:17.746 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 693500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59d9480a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 693500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@59d9480a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:02:17.761 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6db415af67cd4de36bbaf72e87868bb, Client-RequestTS=1727053337653, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.871 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6db415af67cd4de36bbaf72e87868bb, Client-RequestTS=1727053337653, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.918 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9e2cc9c0d4edeb32889217c4fbfc87ce, Client-RequestTS=1727053337809, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:17.980 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6db415af67cd4de36bbaf72e87868bb, Client-RequestTS=1727053337653, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.026 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9e2cc9c0d4edeb32889217c4fbfc87ce, Client-RequestTS=1727053337809, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6db415af67cd4de36bbaf72e87868bb, Client-RequestTS=1727053337653, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:18.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9e2cc9c0d4edeb32889217c4fbfc87ce, Client-RequestTS=1727053337809, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.244 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9e2cc9c0d4edeb32889217c4fbfc87ce, Client-RequestTS=1727053337809, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.244 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:18.259 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e9113b12d6ee7b0a022b447f71443ea, Client-RequestTS=1727053338150, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.368 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e9113b12d6ee7b0a022b447f71443ea, Client-RequestTS=1727053338150, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.400 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa80998e22388c652dad9627a7151079, Client-RequestTS=1727053338294, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.478 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e9113b12d6ee7b0a022b447f71443ea, Client-RequestTS=1727053338150, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.508 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa80998e22388c652dad9627a7151079, Client-RequestTS=1727053338294, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.508 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 79100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@673daa99[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:18.586 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e9113b12d6ee7b0a022b447f71443ea, Client-RequestTS=1727053338150, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.586 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:18.619 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa80998e22388c652dad9627a7151079, Client-RequestTS=1727053338294, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.729 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa80998e22388c652dad9627a7151079, Client-RequestTS=1727053338294, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.729 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:18.761 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=408626e4d540d84aef8d76da404d0154, Client-RequestTS=1727053338650, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.871 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=408626e4d540d84aef8d76da404d0154, Client-RequestTS=1727053338650, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.901 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5c0091fc8cf39d3e64cdc3a1e3e3eb5f, Client-RequestTS=1727053338793, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:18.979 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=408626e4d540d84aef8d76da404d0154, Client-RequestTS=1727053338650, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.010 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5c0091fc8cf39d3e64cdc3a1e3e3eb5f, Client-RequestTS=1727053338793, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=408626e4d540d84aef8d76da404d0154, Client-RequestTS=1727053338650, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:19.119 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5c0091fc8cf39d3e64cdc3a1e3e3eb5f, Client-RequestTS=1727053338793, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.229 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5c0091fc8cf39d3e64cdc3a1e3e3eb5f, Client-RequestTS=1727053338793, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.229 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:19.260 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c492577e275b55e806278020bd4eff16, Client-RequestTS=1727053339151, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.370 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c492577e275b55e806278020bd4eff16, Client-RequestTS=1727053339151, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.402 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=25386d2b353fd99293cc707b94642d68, Client-RequestTS=1727053339291, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.480 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c492577e275b55e806278020bd4eff16, Client-RequestTS=1727053339151, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.513 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=25386d2b353fd99293cc707b94642d68, Client-RequestTS=1727053339291, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c492577e275b55e806278020bd4eff16, Client-RequestTS=1727053339151, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:19.621 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=25386d2b353fd99293cc707b94642d68, Client-RequestTS=1727053339291, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.729 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=25386d2b353fd99293cc707b94642d68, Client-RequestTS=1727053339291, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.729 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:19.760 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b30a6755faef470285c83223fbb5b6, Client-RequestTS=1727053339652, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.869 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b30a6755faef470285c83223fbb5b6, Client-RequestTS=1727053339652, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.884 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d400b424afd8df5b8cb9c8d8582780f9, Client-RequestTS=1727053339780, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.978 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b30a6755faef470285c83223fbb5b6, Client-RequestTS=1727053339652, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:19.994 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d400b424afd8df5b8cb9c8d8582780f9, Client-RequestTS=1727053339780, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.086 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b30a6755faef470285c83223fbb5b6, Client-RequestTS=1727053339652, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.086 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:20.102 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d400b424afd8df5b8cb9c8d8582780f9, Client-RequestTS=1727053339780, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.211 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d400b424afd8df5b8cb9c8d8582780f9, Client-RequestTS=1727053339780, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.211 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:20.256 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2772a69e3b099b7205f842e4a68f682, Client-RequestTS=1727053340149, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.357 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2772a69e3b099b7205f842e4a68f682, Client-RequestTS=1727053340149, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.458 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2772a69e3b099b7205f842e4a68f682, Client-RequestTS=1727053340149, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.558 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2772a69e3b099b7205f842e4a68f682, Client-RequestTS=1727053340149, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.558 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:20.725 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=60b22b30bc5e08713a428b7be01b8c09, Client-RequestTS=1727053340616, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.834 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=60b22b30bc5e08713a428b7be01b8c09, Client-RequestTS=1727053340616, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:20.943 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=60b22b30bc5e08713a428b7be01b8c09, Client-RequestTS=1727053340616, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:21.044 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=60b22b30bc5e08713a428b7be01b8c09, Client-RequestTS=1727053340616, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:21.044 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:21.208 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=23a66cd3dc6f53afd0e2c1dc6783a657, Client-RequestTS=1727053341098, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:21.319 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=23a66cd3dc6f53afd0e2c1dc6783a657, Client-RequestTS=1727053341098, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:21.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=23a66cd3dc6f53afd0e2c1dc6783a657, Client-RequestTS=1727053341098, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:21.538 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=23a66cd3dc6f53afd0e2c1dc6783a657, Client-RequestTS=1727053341098, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:21.538 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:21.710 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=578f4a799b9f352ca21d77a1e49061a0, Client-RequestTS=1727053341601, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:21.726 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 472200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4db4687d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:21.822 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=578f4a799b9f352ca21d77a1e49061a0, Client-RequestTS=1727053341601, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:21.932 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=578f4a799b9f352ca21d77a1e49061a0, Client-RequestTS=1727053341601, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:22.041 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=578f4a799b9f352ca21d77a1e49061a0, Client-RequestTS=1727053341601, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:22.041 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:22.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=211c29333639ae49ce69c1590378a92b, Client-RequestTS=1727053342092, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:22.306 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=211c29333639ae49ce69c1590378a92b, Client-RequestTS=1727053342092, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:22.413 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=211c29333639ae49ce69c1590378a92b, Client-RequestTS=1727053342092, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:22.521 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=211c29333639ae49ce69c1590378a92b, Client-RequestTS=1727053342092, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:22.521 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:22.694 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ccd0e13ec957951a70f5cea535fea1c, Client-RequestTS=1727053342584, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:22.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ccd0e13ec957951a70f5cea535fea1c, Client-RequestTS=1727053342584, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:22.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ccd0e13ec957951a70f5cea535fea1c, Client-RequestTS=1727053342584, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.022 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ccd0e13ec957951a70f5cea535fea1c, Client-RequestTS=1727053342584, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.022 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:23.195 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9496623cb43ba96f83e4efc88ab9e7ef, Client-RequestTS=1727053343084, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.274 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18d54162e5cb147a4293c5d2d600037c, Client-RequestTS=1727053340272, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 839400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bd108f9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:02:23.274 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 839400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bd108f9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 839400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bd108f9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:02:23.303 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9496623cb43ba96f83e4efc88ab9e7ef, Client-RequestTS=1727053343084, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.413 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9496623cb43ba96f83e4efc88ab9e7ef, Client-RequestTS=1727053343084, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.445 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5213d7198552e27ee70a14b57f77fe4c, Client-RequestTS=1727053343334, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.522 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9496623cb43ba96f83e4efc88ab9e7ef, Client-RequestTS=1727053343084, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.522 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:23.545 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5213d7198552e27ee70a14b57f77fe4c, Client-RequestTS=1727053343334, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.647 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5213d7198552e27ee70a14b57f77fe4c, Client-RequestTS=1727053343334, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.693 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7f9260d4368c92d1154d443651c5cfb4, Client-RequestTS=1727053343584, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.756 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5213d7198552e27ee70a14b57f77fe4c, Client-RequestTS=1727053343334, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.756 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:23.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7f9260d4368c92d1154d443651c5cfb4, Client-RequestTS=1727053343584, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7f9260d4368c92d1154d443651c5cfb4, Client-RequestTS=1727053343584, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:23.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48fcd028718cc0d79ba98770a00c4f79, Client-RequestTS=1727053343819, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.019 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7f9260d4368c92d1154d443651c5cfb4, Client-RequestTS=1727053343584, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.019 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:24.035 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48fcd028718cc0d79ba98770a00c4f79, Client-RequestTS=1727053343819, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.146 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48fcd028718cc0d79ba98770a00c4f79, Client-RequestTS=1727053343819, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.192 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9c27ff70403bb48d7852be56d4fcc76c, Client-RequestTS=1727053344083, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.255 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48fcd028718cc0d79ba98770a00c4f79, Client-RequestTS=1727053343819, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.255 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:24.302 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9c27ff70403bb48d7852be56d4fcc76c, Client-RequestTS=1727053344083, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.411 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9c27ff70403bb48d7852be56d4fcc76c, Client-RequestTS=1727053344083, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c0524056cae1f1cf49ab237d2358e8f, Client-RequestTS=1727053344318, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.519 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9c27ff70403bb48d7852be56d4fcc76c, Client-RequestTS=1727053344083, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.519 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:24.534 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c0524056cae1f1cf49ab237d2358e8f, Client-RequestTS=1727053344318, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.644 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c0524056cae1f1cf49ab237d2358e8f, Client-RequestTS=1727053344318, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.745 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c0524056cae1f1cf49ab237d2358e8f, Client-RequestTS=1727053344318, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:24.745 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:24.910 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e7d856fa8f1a4a9f8c898786b1a2ded, Client-RequestTS=1727053344801, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:25.020 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e7d856fa8f1a4a9f8c898786b1a2ded, Client-RequestTS=1727053344801, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:25.129 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e7d856fa8f1a4a9f8c898786b1a2ded, Client-RequestTS=1727053344801, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:25.241 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e7d856fa8f1a4a9f8c898786b1a2ded, Client-RequestTS=1727053344801, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:25.241 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:25.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9731626b9a0a32741999783e2fdaab9, Client-RequestTS=1727053345305, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:25.524 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9731626b9a0a32741999783e2fdaab9, Client-RequestTS=1727053345305, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:25.633 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9731626b9a0a32741999783e2fdaab9, Client-RequestTS=1727053345305, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:25.743 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9731626b9a0a32741999783e2fdaab9, Client-RequestTS=1727053345305, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:25.743 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:25.898 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bdb107beb2c714527fc4fb40fc50e3e3, Client-RequestTS=1727053345794, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.004 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bdb107beb2c714527fc4fb40fc50e3e3, Client-RequestTS=1727053345794, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.114 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bdb107beb2c714527fc4fb40fc50e3e3, Client-RequestTS=1727053345794, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.223 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bdb107beb2c714527fc4fb40fc50e3e3, Client-RequestTS=1727053345794, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.223 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:26.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=585c92d9dc7bcb82b6d7957597eedef5, Client-RequestTS=1727053346286, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.503 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=585c92d9dc7bcb82b6d7957597eedef5, Client-RequestTS=1727053346286, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=585c92d9dc7bcb82b6d7957597eedef5, Client-RequestTS=1727053346286, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.721 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=585c92d9dc7bcb82b6d7957597eedef5, Client-RequestTS=1727053346286, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.721 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:26.737 [boundedElastic-47] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58e2e6302df1c41cfa905a535bc4e79e, Client-RequestTS=1727053346635, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.846 [boundedElastic-47] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58e2e6302df1c41cfa905a535bc4e79e, Client-RequestTS=1727053346635, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a8e2f4a590486e749785d23c0dbd4cb0, Client-RequestTS=1727053346783, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:26.955 [boundedElastic-47] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58e2e6302df1c41cfa905a535bc4e79e, Client-RequestTS=1727053346635, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.001 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a8e2f4a590486e749785d23c0dbd4cb0, Client-RequestTS=1727053346783, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.064 [boundedElastic-47] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=58e2e6302df1c41cfa905a535bc4e79e, Client-RequestTS=1727053346635, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.111 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a8e2f4a590486e749785d23c0dbd4cb0, Client-RequestTS=1727053346783, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a8e2f4a590486e749785d23c0dbd4cb0, Client-RequestTS=1727053346783, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:27.388 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053344775_117.143.60.138_58456, request = ConfigBatchListenRequest +09:02:27.392 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f886012b73ff6cd670a1927820284ef8, Client-RequestTS=1727053347284, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a277955997ba89c404646c0c080be77f, Client-RequestTS=1727053344581, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +09:02:27.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f886012b73ff6cd670a1927820284ef8, Client-RequestTS=1727053347284, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.610 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a277955997ba89c404646c0c080be77f, Client-RequestTS=1727053344581, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.610 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f886012b73ff6cd670a1927820284ef8, Client-RequestTS=1727053347284, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.610 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:27.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f886012b73ff6cd670a1927820284ef8, Client-RequestTS=1727053347284, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:27.781 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfb0dcea56c400497356b266ae7395ea, Client-RequestTS=1727053347672, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.890 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfb0dcea56c400497356b266ae7395ea, Client-RequestTS=1727053347672, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:27.890 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d6652363fb729a3b56a6d5f72a3ea71, Client-RequestTS=1727053347781, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.001 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d6652363fb729a3b56a6d5f72a3ea71, Client-RequestTS=1727053347781, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.001 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfb0dcea56c400497356b266ae7395ea, Client-RequestTS=1727053347672, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.111 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfb0dcea56c400497356b266ae7395ea, Client-RequestTS=1727053347672, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.111 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d6652363fb729a3b56a6d5f72a3ea71, Client-RequestTS=1727053347781, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.111 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:28.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3d6652363fb729a3b56a6d5f72a3ea71, Client-RequestTS=1727053347781, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:28.283 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49a4746c1b1e22c867f115623d86eddc, Client-RequestTS=1727053348174, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.393 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d4bb1ec609918087186f4deb0f8add4, Client-RequestTS=1727053348283, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.393 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49a4746c1b1e22c867f115623d86eddc, Client-RequestTS=1727053348174, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49a4746c1b1e22c867f115623d86eddc, Client-RequestTS=1727053348174, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d4bb1ec609918087186f4deb0f8add4, Client-RequestTS=1727053348283, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d4bb1ec609918087186f4deb0f8add4, Client-RequestTS=1727053348283, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49a4746c1b1e22c867f115623d86eddc, Client-RequestTS=1727053348174, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:28.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1d4bb1ec609918087186f4deb0f8add4, Client-RequestTS=1727053348283, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:28.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e105e51a6efefdb473f21b44988112d, Client-RequestTS=1727053348675, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.895 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68e9f057a906d92a0fbdef9684d29740, Client-RequestTS=1727053348785, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.895 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e105e51a6efefdb473f21b44988112d, Client-RequestTS=1727053348675, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.004 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e105e51a6efefdb473f21b44988112d, Client-RequestTS=1727053348675, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.004 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68e9f057a906d92a0fbdef9684d29740, Client-RequestTS=1727053348785, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e105e51a6efefdb473f21b44988112d, Client-RequestTS=1727053348675, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68e9f057a906d92a0fbdef9684d29740, Client-RequestTS=1727053348785, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:29.222 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68e9f057a906d92a0fbdef9684d29740, Client-RequestTS=1727053348785, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.222 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:29.283 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c616e8532334113885232487b51360a2, Client-RequestTS=1727053349175, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.392 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbd13216eba15a674cc9bc7c98293d9d, Client-RequestTS=1727053349283, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.392 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c616e8532334113885232487b51360a2, Client-RequestTS=1727053349175, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.500 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c616e8532334113885232487b51360a2, Client-RequestTS=1727053349175, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.500 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbd13216eba15a674cc9bc7c98293d9d, Client-RequestTS=1727053349283, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbd13216eba15a674cc9bc7c98293d9d, Client-RequestTS=1727053349283, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c616e8532334113885232487b51360a2, Client-RequestTS=1727053349175, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:29.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbd13216eba15a674cc9bc7c98293d9d, Client-RequestTS=1727053349283, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:29.781 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ebc30007b5191d3489cde3d990a40e36, Client-RequestTS=1727053349674, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5d2f286a5c14428aee3092f573cb0457, Client-RequestTS=1727053349781, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ebc30007b5191d3489cde3d990a40e36, Client-RequestTS=1727053349674, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5d2f286a5c14428aee3092f573cb0457, Client-RequestTS=1727053349781, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:29.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ebc30007b5191d3489cde3d990a40e36, Client-RequestTS=1727053349674, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ebc30007b5191d3489cde3d990a40e36, Client-RequestTS=1727053349674, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5d2f286a5c14428aee3092f573cb0457, Client-RequestTS=1727053349781, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:30.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5d2f286a5c14428aee3092f573cb0457, Client-RequestTS=1727053349781, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:30.279 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f05b4e6c554b427e76166453382b55ea, Client-RequestTS=1727053350171, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.388 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f05b4e6c554b427e76166453382b55ea, Client-RequestTS=1727053350171, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.388 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3deb9797d78df63981b4fea17b67a106, Client-RequestTS=1727053350279, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.404 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 894700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bdfac72[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:30.497 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3deb9797d78df63981b4fea17b67a106, Client-RequestTS=1727053350279, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.497 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f05b4e6c554b427e76166453382b55ea, Client-RequestTS=1727053350171, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.607 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3deb9797d78df63981b4fea17b67a106, Client-RequestTS=1727053350279, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.607 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f05b4e6c554b427e76166453382b55ea, Client-RequestTS=1727053350171, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.607 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:30.778 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9921105d77f9125b99ec6644d2b89968, Client-RequestTS=1727053350669, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9921105d77f9125b99ec6644d2b89968, Client-RequestTS=1727053350669, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:30.998 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9921105d77f9125b99ec6644d2b89968, Client-RequestTS=1727053350669, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9921105d77f9125b99ec6644d2b89968, Client-RequestTS=1727053350669, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:31.280 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7f6b64aed72ca9eb02201ce1c6d0391, Client-RequestTS=1727053351170, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.388 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7f6b64aed72ca9eb02201ce1c6d0391, Client-RequestTS=1727053351170, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.495 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7f6b64aed72ca9eb02201ce1c6d0391, Client-RequestTS=1727053351170, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.603 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7f6b64aed72ca9eb02201ce1c6d0391, Client-RequestTS=1727053351170, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.603 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:31.774 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a42efeb4da70fad9ee846ae176a932a, Client-RequestTS=1727053351664, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.886 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a42efeb4da70fad9ee846ae176a932a, Client-RequestTS=1727053351664, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.996 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a42efeb4da70fad9ee846ae176a932a, Client-RequestTS=1727053351664, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:32.105 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a42efeb4da70fad9ee846ae176a932a, Client-RequestTS=1727053351664, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:32.105 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:32.275 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ef253fd7ac0a8032c3de2b602f9dc668, Client-RequestTS=1727053352168, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:32.387 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ef253fd7ac0a8032c3de2b602f9dc668, Client-RequestTS=1727053352168, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:32.498 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ef253fd7ac0a8032c3de2b602f9dc668, Client-RequestTS=1727053352168, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:32.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ef253fd7ac0a8032c3de2b602f9dc668, Client-RequestTS=1727053352168, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:32.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:32.781 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8cb630056c901ed38b4af9765d818296, Client-RequestTS=1727053352670, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:32.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8cb630056c901ed38b4af9765d818296, Client-RequestTS=1727053352670, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:32.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8cb630056c901ed38b4af9765d818296, Client-RequestTS=1727053352670, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8cb630056c901ed38b4af9765d818296, Client-RequestTS=1727053352670, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:33.279 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=28c81a8f86fcee79223fb8072de3b758, Client-RequestTS=1727053353169, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.387 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=28c81a8f86fcee79223fb8072de3b758, Client-RequestTS=1727053353169, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.494 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=28c81a8f86fcee79223fb8072de3b758, Client-RequestTS=1727053353169, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.527 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 859000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@77a6c82b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:33.604 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=28c81a8f86fcee79223fb8072de3b758, Client-RequestTS=1727053353169, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.604 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:33.620 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3deb9797d78df63981b4fea17b67a106, Client-RequestTS=1727053350279, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 561200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7addcef1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:02:33.620 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 561200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7addcef1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 561200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7addcef1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:02:33.777 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=88d9b534d0e01c399a050d98a565bdf9, Client-RequestTS=1727053353667, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.792 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6531097d0deaa4ca0373a595c00e0f90, Client-RequestTS=1727053353683, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.886 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=88d9b534d0e01c399a050d98a565bdf9, Client-RequestTS=1727053353667, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.902 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6531097d0deaa4ca0373a595c00e0f90, Client-RequestTS=1727053353683, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:33.995 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=88d9b534d0e01c399a050d98a565bdf9, Client-RequestTS=1727053353667, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.011 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6531097d0deaa4ca0373a595c00e0f90, Client-RequestTS=1727053353683, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.104 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=88d9b534d0e01c399a050d98a565bdf9, Client-RequestTS=1727053353667, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.104 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:34.120 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6531097d0deaa4ca0373a595c00e0f90, Client-RequestTS=1727053353683, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.120 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:34.276 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56760d7712c02484e499b1e1aa69bb0c, Client-RequestTS=1727053354166, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.291 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=287916599cb03a594702a9f4caaf7339, Client-RequestTS=1727053354182, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.384 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56760d7712c02484e499b1e1aa69bb0c, Client-RequestTS=1727053354166, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.399 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=287916599cb03a594702a9f4caaf7339, Client-RequestTS=1727053354182, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.491 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56760d7712c02484e499b1e1aa69bb0c, Client-RequestTS=1727053354166, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.507 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=287916599cb03a594702a9f4caaf7339, Client-RequestTS=1727053354182, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.602 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56760d7712c02484e499b1e1aa69bb0c, Client-RequestTS=1727053354166, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.602 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:34.617 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=287916599cb03a594702a9f4caaf7339, Client-RequestTS=1727053354182, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.617 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:34.772 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cdab52bd0100db271d1b9bec8db409bb, Client-RequestTS=1727053354664, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.787 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=333eec081dc2a4e0026759fce587bc7e, Client-RequestTS=1727053354678, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.881 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cdab52bd0100db271d1b9bec8db409bb, Client-RequestTS=1727053354664, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.888 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=333eec081dc2a4e0026759fce587bc7e, Client-RequestTS=1727053354678, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.982 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cdab52bd0100db271d1b9bec8db409bb, Client-RequestTS=1727053354664, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:34.990 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=333eec081dc2a4e0026759fce587bc7e, Client-RequestTS=1727053354678, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cdab52bd0100db271d1b9bec8db409bb, Client-RequestTS=1727053354664, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:35.100 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=333eec081dc2a4e0026759fce587bc7e, Client-RequestTS=1727053354678, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.100 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:35.258 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8544dca04893c222be49921cad3b988b, Client-RequestTS=1727053355147, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.274 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=080e0109506ed953135fd2fcff323e68, Client-RequestTS=1727053355163, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.365 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8544dca04893c222be49921cad3b988b, Client-RequestTS=1727053355147, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.381 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=080e0109506ed953135fd2fcff323e68, Client-RequestTS=1727053355163, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.474 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8544dca04893c222be49921cad3b988b, Client-RequestTS=1727053355147, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.489 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=080e0109506ed953135fd2fcff323e68, Client-RequestTS=1727053355163, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8544dca04893c222be49921cad3b988b, Client-RequestTS=1727053355147, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:35.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=080e0109506ed953135fd2fcff323e68, Client-RequestTS=1727053355163, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:35.757 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e168f5232b48737c0117d8a2aa991d5, Client-RequestTS=1727053355646, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.773 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9bcf27b64c476afa6c7a18c8a3428d11, Client-RequestTS=1727053355661, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.868 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e168f5232b48737c0117d8a2aa991d5, Client-RequestTS=1727053355646, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.884 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9bcf27b64c476afa6c7a18c8a3428d11, Client-RequestTS=1727053355661, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.977 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e168f5232b48737c0117d8a2aa991d5, Client-RequestTS=1727053355646, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:35.992 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9bcf27b64c476afa6c7a18c8a3428d11, Client-RequestTS=1727053355661, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.085 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0e168f5232b48737c0117d8a2aa991d5, Client-RequestTS=1727053355646, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.085 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.100 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9bcf27b64c476afa6c7a18c8a3428d11, Client-RequestTS=1727053355661, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.100 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.256 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3862f990e02a6648af4d43dcc2d148f2, Client-RequestTS=1727053356148, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.272 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcc9c0805434304e028e4cf86760bb0a, Client-RequestTS=1727053356163, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.365 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3862f990e02a6648af4d43dcc2d148f2, Client-RequestTS=1727053356148, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.381 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcc9c0805434304e028e4cf86760bb0a, Client-RequestTS=1727053356163, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.473 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3862f990e02a6648af4d43dcc2d148f2, Client-RequestTS=1727053356148, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.489 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcc9c0805434304e028e4cf86760bb0a, Client-RequestTS=1727053356163, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3862f990e02a6648af4d43dcc2d148f2, Client-RequestTS=1727053356148, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.598 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bcc9c0805434304e028e4cf86760bb0a, Client-RequestTS=1727053356163, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.598 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.738 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 455000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@31e9fffb[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.746 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56b2111e3699e5a94c7bed2c4b568d3f, Client-RequestTS=1727053356644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.768 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2299647d0c8aecea4f4b04e2e800631b, Client-RequestTS=1727053356659, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.847 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56b2111e3699e5a94c7bed2c4b568d3f, Client-RequestTS=1727053356644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.878 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2299647d0c8aecea4f4b04e2e800631b, Client-RequestTS=1727053356659, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56b2111e3699e5a94c7bed2c4b568d3f, Client-RequestTS=1727053356644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:36.989 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2299647d0c8aecea4f4b04e2e800631b, Client-RequestTS=1727053356659, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56b2111e3699e5a94c7bed2c4b568d3f, Client-RequestTS=1727053356644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:37.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2299647d0c8aecea4f4b04e2e800631b, Client-RequestTS=1727053356659, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:37.238 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec1ecbdb52e8ae9e43ecd5153646b5b6, Client-RequestTS=1727053357130, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.269 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=94890d48d81331bf64922502b3b81ab4, Client-RequestTS=1727053357161, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.348 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec1ecbdb52e8ae9e43ecd5153646b5b6, Client-RequestTS=1727053357130, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.380 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=94890d48d81331bf64922502b3b81ab4, Client-RequestTS=1727053357161, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.456 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec1ecbdb52e8ae9e43ecd5153646b5b6, Client-RequestTS=1727053357130, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.487 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=94890d48d81331bf64922502b3b81ab4, Client-RequestTS=1727053357161, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.565 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec1ecbdb52e8ae9e43ecd5153646b5b6, Client-RequestTS=1727053357130, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.565 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:37.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=94890d48d81331bf64922502b3b81ab4, Client-RequestTS=1727053357161, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:37.734 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=21d888b201d38c8c3b8fee2a5cc7434a, Client-RequestTS=1727053357627, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.765 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49efd4f802b9b3f1da1c51ddd55660c9, Client-RequestTS=1727053357658, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.843 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=21d888b201d38c8c3b8fee2a5cc7434a, Client-RequestTS=1727053357627, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.875 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49efd4f802b9b3f1da1c51ddd55660c9, Client-RequestTS=1727053357658, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.944 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=21d888b201d38c8c3b8fee2a5cc7434a, Client-RequestTS=1727053357627, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:37.985 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49efd4f802b9b3f1da1c51ddd55660c9, Client-RequestTS=1727053357658, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.047 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=21d888b201d38c8c3b8fee2a5cc7434a, Client-RequestTS=1727053357627, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.047 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:38.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=49efd4f802b9b3f1da1c51ddd55660c9, Client-RequestTS=1727053357658, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:38.219 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=404f00fe882321e219a8897788a29373, Client-RequestTS=1727053358110, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.265 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=959acc4369309adb755ad80d4ca3f4d2, Client-RequestTS=1727053358156, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.328 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=404f00fe882321e219a8897788a29373, Client-RequestTS=1727053358110, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.374 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=959acc4369309adb755ad80d4ca3f4d2, Client-RequestTS=1727053358156, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=404f00fe882321e219a8897788a29373, Client-RequestTS=1727053358110, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.483 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=959acc4369309adb755ad80d4ca3f4d2, Client-RequestTS=1727053358156, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.538 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=404f00fe882321e219a8897788a29373, Client-RequestTS=1727053358110, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.538 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:38.595 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=959acc4369309adb755ad80d4ca3f4d2, Client-RequestTS=1727053358156, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.595 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:38.704 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c427c28c19dfb35c1de71dcf8cc197b, Client-RequestTS=1727053358595, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.767 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=375c457daf358f1b15698d9ddfb4a73f, Client-RequestTS=1727053358658, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.814 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c427c28c19dfb35c1de71dcf8cc197b, Client-RequestTS=1727053358595, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.877 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=375c457daf358f1b15698d9ddfb4a73f, Client-RequestTS=1727053358658, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.924 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c427c28c19dfb35c1de71dcf8cc197b, Client-RequestTS=1727053358595, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:38.987 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=375c457daf358f1b15698d9ddfb4a73f, Client-RequestTS=1727053358658, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.033 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c427c28c19dfb35c1de71dcf8cc197b, Client-RequestTS=1727053358595, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.033 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:39.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=375c457daf358f1b15698d9ddfb4a73f, Client-RequestTS=1727053358658, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:39.202 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae7ffab3eacc668afbfec72c000c4ed5, Client-RequestTS=1727053359094, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.266 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2bfa4c7b78b8faad74151cf08216c841, Client-RequestTS=1727053359157, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.313 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae7ffab3eacc668afbfec72c000c4ed5, Client-RequestTS=1727053359094, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.376 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2bfa4c7b78b8faad74151cf08216c841, Client-RequestTS=1727053359157, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.423 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae7ffab3eacc668afbfec72c000c4ed5, Client-RequestTS=1727053359094, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.485 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2bfa4c7b78b8faad74151cf08216c841, Client-RequestTS=1727053359157, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.532 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ae7ffab3eacc668afbfec72c000c4ed5, Client-RequestTS=1727053359094, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.532 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:39.592 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2bfa4c7b78b8faad74151cf08216c841, Client-RequestTS=1727053359157, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.592 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:39.701 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9e409809f3960544f530ee0735970c87, Client-RequestTS=1727053359592, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.763 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff2b5567e43cf6783050a3754a8eb7cb, Client-RequestTS=1727053359655, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.809 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9e409809f3960544f530ee0735970c87, Client-RequestTS=1727053359592, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.871 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff2b5567e43cf6783050a3754a8eb7cb, Client-RequestTS=1727053359655, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.919 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9e409809f3960544f530ee0735970c87, Client-RequestTS=1727053359592, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:39.982 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff2b5567e43cf6783050a3754a8eb7cb, Client-RequestTS=1727053359655, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.028 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9e409809f3960544f530ee0735970c87, Client-RequestTS=1727053359592, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.028 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:40.059 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 43900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@208d8e8c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:40.090 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff2b5567e43cf6783050a3754a8eb7cb, Client-RequestTS=1727053359655, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.090 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:40.198 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=870beef225e5518a3ca5a847357d7d0f, Client-RequestTS=1727053360090, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.260 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a08632494d1169a3c6a61afabea1112, Client-RequestTS=1727053360153, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.307 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=870beef225e5518a3ca5a847357d7d0f, Client-RequestTS=1727053360090, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.369 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a08632494d1169a3c6a61afabea1112, Client-RequestTS=1727053360153, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.416 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=870beef225e5518a3ca5a847357d7d0f, Client-RequestTS=1727053360090, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.478 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a08632494d1169a3c6a61afabea1112, Client-RequestTS=1727053360153, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.526 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=870beef225e5518a3ca5a847357d7d0f, Client-RequestTS=1727053360090, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.526 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:40.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a08632494d1169a3c6a61afabea1112, Client-RequestTS=1727053360153, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:40.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8349d15fbbee723cc6466d2d2a7bc9f7, Client-RequestTS=1727053360590, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.762 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6220d9ec6d6537e8de16c9438f40fe41, Client-RequestTS=1727053360653, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.809 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8349d15fbbee723cc6466d2d2a7bc9f7, Client-RequestTS=1727053360590, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:40.911 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8349d15fbbee723cc6466d2d2a7bc9f7, Client-RequestTS=1727053360590, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:41.011 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8349d15fbbee723cc6466d2d2a7bc9f7, Client-RequestTS=1727053360590, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:41.012 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:41.185 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=588a2151525367b1787f8ed31b1a3152, Client-RequestTS=1727053361075, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:41.292 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=588a2151525367b1787f8ed31b1a3152, Client-RequestTS=1727053361075, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:41.399 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=588a2151525367b1787f8ed31b1a3152, Client-RequestTS=1727053361075, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:41.508 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=588a2151525367b1787f8ed31b1a3152, Client-RequestTS=1727053361075, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:41.508 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:41.678 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a3116b52bebb754fa7f786fb65de1141, Client-RequestTS=1727053361571, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:41.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a3116b52bebb754fa7f786fb65de1141, Client-RequestTS=1727053361571, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:41.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a3116b52bebb754fa7f786fb65de1141, Client-RequestTS=1727053361571, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:42.008 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a3116b52bebb754fa7f786fb65de1141, Client-RequestTS=1727053361571, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:42.008 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:42.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fa7bae6939f288e0301d44010dfbf040, Client-RequestTS=1727053362069, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:42.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fa7bae6939f288e0301d44010dfbf040, Client-RequestTS=1727053362069, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:42.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fa7bae6939f288e0301d44010dfbf040, Client-RequestTS=1727053362069, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:42.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fa7bae6939f288e0301d44010dfbf040, Client-RequestTS=1727053362069, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:42.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:42.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c15a04d134a44895174c88b57427ca21, Client-RequestTS=1727053362567, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:42.785 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c15a04d134a44895174c88b57427ca21, Client-RequestTS=1727053362567, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:42.894 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c15a04d134a44895174c88b57427ca21, Client-RequestTS=1727053362567, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c15a04d134a44895174c88b57427ca21, Client-RequestTS=1727053362567, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:43.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2249afead459a99cb1bddadb74053ab6, Client-RequestTS=1727053363066, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2249afead459a99cb1bddadb74053ab6, Client-RequestTS=1727053363066, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.398 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2249afead459a99cb1bddadb74053ab6, Client-RequestTS=1727053363066, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.477 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 178300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ff969b7[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:43.508 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2249afead459a99cb1bddadb74053ab6, Client-RequestTS=1727053363066, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.508 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:43.681 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=34b34f056571d8e883b5a92a08d22f7c, Client-RequestTS=1727053363571, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.763 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6220d9ec6d6537e8de16c9438f40fe41, Client-RequestTS=1727053360653, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 575100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d1d09f7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:02:43.763 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 575100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d1d09f7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 575100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d1d09f7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:02:43.791 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=34b34f056571d8e883b5a92a08d22f7c, Client-RequestTS=1727053363571, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.900 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=34b34f056571d8e883b5a92a08d22f7c, Client-RequestTS=1727053363571, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:43.930 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b58cd5cf8e7f88bd7edaf933d93bea66, Client-RequestTS=1727053363822, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.009 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=34b34f056571d8e883b5a92a08d22f7c, Client-RequestTS=1727053363571, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.009 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:44.041 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b58cd5cf8e7f88bd7edaf933d93bea66, Client-RequestTS=1727053363822, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.148 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b58cd5cf8e7f88bd7edaf933d93bea66, Client-RequestTS=1727053363822, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0250897d5b1434ebc8dc3a3ed23cd6c5, Client-RequestTS=1727053364071, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.257 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b58cd5cf8e7f88bd7edaf933d93bea66, Client-RequestTS=1727053363822, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.257 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:44.289 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0250897d5b1434ebc8dc3a3ed23cd6c5, Client-RequestTS=1727053364071, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.399 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0250897d5b1434ebc8dc3a3ed23cd6c5, Client-RequestTS=1727053364071, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8b8bfb4f287098466d4d5bfb1b6f13b, Client-RequestTS=1727053364321, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.506 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0250897d5b1434ebc8dc3a3ed23cd6c5, Client-RequestTS=1727053364071, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.506 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:44.538 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8b8bfb4f287098466d4d5bfb1b6f13b, Client-RequestTS=1727053364321, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.647 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8b8bfb4f287098466d4d5bfb1b6f13b, Client-RequestTS=1727053364321, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.679 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=756992c45266f594a3be6a0dc2cb387f, Client-RequestTS=1727053364568, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.755 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e8b8bfb4f287098466d4d5bfb1b6f13b, Client-RequestTS=1727053364321, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.755 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:44.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=756992c45266f594a3be6a0dc2cb387f, Client-RequestTS=1727053364568, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=756992c45266f594a3be6a0dc2cb387f, Client-RequestTS=1727053364568, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:44.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=61c81b41b296c90e3b602b114bf15eac, Client-RequestTS=1727053364818, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.006 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=756992c45266f594a3be6a0dc2cb387f, Client-RequestTS=1727053364568, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.006 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:45.038 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=61c81b41b296c90e3b602b114bf15eac, Client-RequestTS=1727053364818, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.139 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=61c81b41b296c90e3b602b114bf15eac, Client-RequestTS=1727053364818, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ee2b1327adf5822b3dd1e90ff7dbd96a, Client-RequestTS=1727053365069, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.241 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=61c81b41b296c90e3b602b114bf15eac, Client-RequestTS=1727053364818, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.241 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:45.287 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ee2b1327adf5822b3dd1e90ff7dbd96a, Client-RequestTS=1727053365069, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=347e61a8c7fd4317b3fb58d31b61a035, Client-RequestTS=1727053365293, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ee2b1327adf5822b3dd1e90ff7dbd96a, Client-RequestTS=1727053365069, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=347e61a8c7fd4317b3fb58d31b61a035, Client-RequestTS=1727053365293, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ee2b1327adf5822b3dd1e90ff7dbd96a, Client-RequestTS=1727053365069, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:45.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=347e61a8c7fd4317b3fb58d31b61a035, Client-RequestTS=1727053365293, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=756ef0e7a876389ff53a896b3e5cc834, Client-RequestTS=1727053365566, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=347e61a8c7fd4317b3fb58d31b61a035, Client-RequestTS=1727053365293, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:45.783 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=756ef0e7a876389ff53a896b3e5cc834, Client-RequestTS=1727053365566, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba8c531a8a137bd0bd1716c30c2c4545, Client-RequestTS=1727053365783, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:45.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=756ef0e7a876389ff53a896b3e5cc834, Client-RequestTS=1727053365566, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.001 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba8c531a8a137bd0bd1716c30c2c4545, Client-RequestTS=1727053365783, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.001 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=756ef0e7a876389ff53a896b3e5cc834, Client-RequestTS=1727053365566, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.001 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:46.109 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba8c531a8a137bd0bd1716c30c2c4545, Client-RequestTS=1727053365783, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.171 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fa68377b902259fc48af704f77657eab, Client-RequestTS=1727053366062, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.219 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba8c531a8a137bd0bd1716c30c2c4545, Client-RequestTS=1727053365783, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.219 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:46.282 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fa68377b902259fc48af704f77657eab, Client-RequestTS=1727053366062, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.392 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fa68377b902259fc48af704f77657eab, Client-RequestTS=1727053366062, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.392 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a4f80a6c8469ceecafebb3b7a45bac53, Client-RequestTS=1727053366282, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.499 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a4f80a6c8469ceecafebb3b7a45bac53, Client-RequestTS=1727053366282, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.499 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fa68377b902259fc48af704f77657eab, Client-RequestTS=1727053366062, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.499 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:46.611 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a4f80a6c8469ceecafebb3b7a45bac53, Client-RequestTS=1727053366282, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.674 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72113b607d060c53de1087d7de9d5685, Client-RequestTS=1727053366563, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.721 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a4f80a6c8469ceecafebb3b7a45bac53, Client-RequestTS=1727053366282, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.721 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:46.782 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72113b607d060c53de1087d7de9d5685, Client-RequestTS=1727053366563, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.894 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a7f59cfbdd88944ed3912c2292a21bb, Client-RequestTS=1727053366782, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:46.894 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72113b607d060c53de1087d7de9d5685, Client-RequestTS=1727053366563, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.004 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72113b607d060c53de1087d7de9d5685, Client-RequestTS=1727053366563, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.004 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a7f59cfbdd88944ed3912c2292a21bb, Client-RequestTS=1727053366782, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.004 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 147600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2c16e116[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:47.004 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:47.114 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a7f59cfbdd88944ed3912c2292a21bb, Client-RequestTS=1727053366782, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=57a9db8151f8dd88f11a94f3fce70cb6, Client-RequestTS=1727053367067, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.225 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5a7f59cfbdd88944ed3912c2292a21bb, Client-RequestTS=1727053366782, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.225 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:47.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=57a9db8151f8dd88f11a94f3fce70cb6, Client-RequestTS=1727053367067, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=57a9db8151f8dd88f11a94f3fce70cb6, Client-RequestTS=1727053367067, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f8a194be198cbd039664150afb84647f, Client-RequestTS=1727053367286, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=57a9db8151f8dd88f11a94f3fce70cb6, Client-RequestTS=1727053367067, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f8a194be198cbd039664150afb84647f, Client-RequestTS=1727053367286, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.504 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:47.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f8a194be198cbd039664150afb84647f, Client-RequestTS=1727053367286, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=610f16bca51a313a3b4044d8e54c49a7, Client-RequestTS=1727053367566, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.723 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f8a194be198cbd039664150afb84647f, Client-RequestTS=1727053367286, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.723 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:47.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=610f16bca51a313a3b4044d8e54c49a7, Client-RequestTS=1727053367566, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=610f16bca51a313a3b4044d8e54c49a7, Client-RequestTS=1727053367566, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:47.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2e1f68c80ba0262ce2b28bb591c04a69, Client-RequestTS=1727053367784, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2e1f68c80ba0262ce2b28bb591c04a69, Client-RequestTS=1727053367784, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=610f16bca51a313a3b4044d8e54c49a7, Client-RequestTS=1727053367566, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.003 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:48.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2e1f68c80ba0262ce2b28bb591c04a69, Client-RequestTS=1727053367784, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.175 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3da83103b676fc16eb7531531f85bf2a, Client-RequestTS=1727053368066, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.222 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2e1f68c80ba0262ce2b28bb591c04a69, Client-RequestTS=1727053367784, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.222 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:48.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3da83103b676fc16eb7531531f85bf2a, Client-RequestTS=1727053368066, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3da83103b676fc16eb7531531f85bf2a, Client-RequestTS=1727053368066, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8efafe20d3b9f885ab3719ca7874eb56, Client-RequestTS=1727053368286, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8efafe20d3b9f885ab3719ca7874eb56, Client-RequestTS=1727053368286, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3da83103b676fc16eb7531531f85bf2a, Client-RequestTS=1727053368066, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:48.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8efafe20d3b9f885ab3719ca7874eb56, Client-RequestTS=1727053368286, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1a378d0d0cf3c31eaf97e1f63a313648, Client-RequestTS=1727053368566, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.720 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8efafe20d3b9f885ab3719ca7874eb56, Client-RequestTS=1727053368286, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.720 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:48.782 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1a378d0d0cf3c31eaf97e1f63a313648, Client-RequestTS=1727053368566, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d22b54ae7330994ae97ed4ad7f098a1c, Client-RequestTS=1727053368782, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1a378d0d0cf3c31eaf97e1f63a313648, Client-RequestTS=1727053368566, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1a378d0d0cf3c31eaf97e1f63a313648, Client-RequestTS=1727053368566, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d22b54ae7330994ae97ed4ad7f098a1c, Client-RequestTS=1727053368782, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:48.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:49.110 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d22b54ae7330994ae97ed4ad7f098a1c, Client-RequestTS=1727053368782, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.172 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ab8e7a24b76d41c55a651e758731a8ce, Client-RequestTS=1727053369062, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.219 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d22b54ae7330994ae97ed4ad7f098a1c, Client-RequestTS=1727053368782, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.219 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:49.282 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ab8e7a24b76d41c55a651e758731a8ce, Client-RequestTS=1727053369062, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.391 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=52508db6700137d12f825607c563bd08, Client-RequestTS=1727053369282, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.391 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ab8e7a24b76d41c55a651e758731a8ce, Client-RequestTS=1727053369062, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=52508db6700137d12f825607c563bd08, Client-RequestTS=1727053369282, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ab8e7a24b76d41c55a651e758731a8ce, Client-RequestTS=1727053369062, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.502 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:49.612 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=52508db6700137d12f825607c563bd08, Client-RequestTS=1727053369282, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dee5c6d182db9f701006ea8a96cffd83, Client-RequestTS=1727053369566, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=52508db6700137d12f825607c563bd08, Client-RequestTS=1727053369282, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:49.781 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dee5c6d182db9f701006ea8a96cffd83, Client-RequestTS=1727053369566, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2b7b5164c8e6198d02ddc32509a1c1e4, Client-RequestTS=1727053369781, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:49.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dee5c6d182db9f701006ea8a96cffd83, Client-RequestTS=1727053369566, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.000 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2b7b5164c8e6198d02ddc32509a1c1e4, Client-RequestTS=1727053369781, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.000 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dee5c6d182db9f701006ea8a96cffd83, Client-RequestTS=1727053369566, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.000 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:50.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2b7b5164c8e6198d02ddc32509a1c1e4, Client-RequestTS=1727053369781, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.152 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ab27b5e32cb541a6e22f3c2403bc960, Client-RequestTS=1727053370052, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.209 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2b7b5164c8e6198d02ddc32509a1c1e4, Client-RequestTS=1727053369781, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.209 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:50.253 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ab27b5e32cb541a6e22f3c2403bc960, Client-RequestTS=1727053370052, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.354 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ab27b5e32cb541a6e22f3c2403bc960, Client-RequestTS=1727053370052, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.362 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4245c45e71f23300867fb1563c3b1126, Client-RequestTS=1727053370260, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.455 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ab27b5e32cb541a6e22f3c2403bc960, Client-RequestTS=1727053370052, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.455 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:50.463 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4245c45e71f23300867fb1563c3b1126, Client-RequestTS=1727053370260, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.578 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4245c45e71f23300867fb1563c3b1126, Client-RequestTS=1727053370260, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.625 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ed34fa5b8724550491b7a4b4b0388f92, Client-RequestTS=1727053370515, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.687 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4245c45e71f23300867fb1563c3b1126, Client-RequestTS=1727053370260, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.687 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:50.856 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=54b597de7b4447a732b966cd05b55ebe, Client-RequestTS=1727053370750, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:50.967 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=54b597de7b4447a732b966cd05b55ebe, Client-RequestTS=1727053370750, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:51.076 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=54b597de7b4447a732b966cd05b55ebe, Client-RequestTS=1727053370750, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:51.187 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=54b597de7b4447a732b966cd05b55ebe, Client-RequestTS=1727053370750, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:51.187 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:51.359 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f68f4147d8b8278101e69c3bca485b6, Client-RequestTS=1727053371249, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:51.467 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f68f4147d8b8278101e69c3bca485b6, Client-RequestTS=1727053371249, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:51.578 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f68f4147d8b8278101e69c3bca485b6, Client-RequestTS=1727053371249, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:51.685 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f68f4147d8b8278101e69c3bca485b6, Client-RequestTS=1727053371249, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:51.685 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:51.855 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=497762a01b8c2bbbbf7ee76294ca9653, Client-RequestTS=1727053371747, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:51.964 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=497762a01b8c2bbbbf7ee76294ca9653, Client-RequestTS=1727053371747, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:52.075 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=497762a01b8c2bbbbf7ee76294ca9653, Client-RequestTS=1727053371747, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:52.183 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=497762a01b8c2bbbbf7ee76294ca9653, Client-RequestTS=1727053371747, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:52.183 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:52.355 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3839bef3479c3258d1ed7aff40d39f25, Client-RequestTS=1727053372246, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:52.464 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3839bef3479c3258d1ed7aff40d39f25, Client-RequestTS=1727053372246, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:52.574 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3839bef3479c3258d1ed7aff40d39f25, Client-RequestTS=1727053372246, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:52.682 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3839bef3479c3258d1ed7aff40d39f25, Client-RequestTS=1727053372246, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:52.682 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:52.846 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1840add45b7c4e70b36ba2db691d4b6f, Client-RequestTS=1727053372745, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:52.948 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1840add45b7c4e70b36ba2db691d4b6f, Client-RequestTS=1727053372745, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:53.057 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1840add45b7c4e70b36ba2db691d4b6f, Client-RequestTS=1727053372745, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:53.166 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1840add45b7c4e70b36ba2db691d4b6f, Client-RequestTS=1727053372745, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:53.166 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:53.339 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51d1fc502f48a574606aeffc214c3f30, Client-RequestTS=1727053373230, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:53.440 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51d1fc502f48a574606aeffc214c3f30, Client-RequestTS=1727053373230, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:53.545 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51d1fc502f48a574606aeffc214c3f30, Client-RequestTS=1727053373230, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:53.646 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51d1fc502f48a574606aeffc214c3f30, Client-RequestTS=1727053373230, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:53.646 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:53.808 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f73289ffa646ff88565a83745b45a4a9, Client-RequestTS=1727053373699, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:53.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f73289ffa646ff88565a83745b45a4a9, Client-RequestTS=1727053373699, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:54.027 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f73289ffa646ff88565a83745b45a4a9, Client-RequestTS=1727053373699, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:54.135 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f73289ffa646ff88565a83745b45a4a9, Client-RequestTS=1727053373699, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:54.135 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:54.307 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad603938345fef76d522fa6e1822fdc8, Client-RequestTS=1727053374196, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:54.419 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad603938345fef76d522fa6e1822fdc8, Client-RequestTS=1727053374196, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:54.531 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad603938345fef76d522fa6e1822fdc8, Client-RequestTS=1727053374196, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:54.643 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad603938345fef76d522fa6e1822fdc8, Client-RequestTS=1727053374196, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:54.643 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:54.801 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51abe952b9d29a739f8dff29f550c934, Client-RequestTS=1727053374694, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:54.911 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51abe952b9d29a739f8dff29f550c934, Client-RequestTS=1727053374694, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:55.021 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51abe952b9d29a739f8dff29f550c934, Client-RequestTS=1727053374694, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:55.129 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=51abe952b9d29a739f8dff29f550c934, Client-RequestTS=1727053374694, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:55.129 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:55.301 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2c80b9512eedc29d34bbdbbaa198b6d, Client-RequestTS=1727053375192, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:55.410 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2c80b9512eedc29d34bbdbbaa198b6d, Client-RequestTS=1727053375192, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:55.519 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2c80b9512eedc29d34bbdbbaa198b6d, Client-RequestTS=1727053375192, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:55.629 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2c80b9512eedc29d34bbdbbaa198b6d, Client-RequestTS=1727053375192, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:55.629 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:55.800 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2bb22d40f218c2c5bc3b7f47bc37126b, Client-RequestTS=1727053375692, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:55.878 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 18500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5f8dba2f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:55.909 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2bb22d40f218c2c5bc3b7f47bc37126b, Client-RequestTS=1727053375692, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:56.019 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2bb22d40f218c2c5bc3b7f47bc37126b, Client-RequestTS=1727053375692, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:56.128 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2bb22d40f218c2c5bc3b7f47bc37126b, Client-RequestTS=1727053375692, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:56.128 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:56.301 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4ac6c4ccf4cd55304526b2bdf809488c, Client-RequestTS=1727053376191, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:56.410 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4ac6c4ccf4cd55304526b2bdf809488c, Client-RequestTS=1727053376191, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:56.519 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4ac6c4ccf4cd55304526b2bdf809488c, Client-RequestTS=1727053376191, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:56.627 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4ac6c4ccf4cd55304526b2bdf809488c, Client-RequestTS=1727053376191, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:56.627 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:56.803 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=256755e213fe80bf0248675e8f699c0a, Client-RequestTS=1727053376691, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:56.914 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=256755e213fe80bf0248675e8f699c0a, Client-RequestTS=1727053376691, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:57.024 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=256755e213fe80bf0248675e8f699c0a, Client-RequestTS=1727053376691, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:57.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=256755e213fe80bf0248675e8f699c0a, Client-RequestTS=1727053376691, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:57.134 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:57.307 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8178e802a88939708466f8fe742be665, Client-RequestTS=1727053377197, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:57.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8178e802a88939708466f8fe742be665, Client-RequestTS=1727053377197, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:57.525 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8178e802a88939708466f8fe742be665, Client-RequestTS=1727053377197, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:57.634 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8178e802a88939708466f8fe742be665, Client-RequestTS=1727053377197, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:57.634 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:57.806 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d858e119163392c8cb047d35fa34952, Client-RequestTS=1727053377696, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:21.536 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 818600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@b4345ef[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:24.648 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 382200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a6787fa[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:27.856 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 39000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@165cd549[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:35.499 [boundedElastic-57] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=53470f750cce0f9aae70125adaaf2afe, Client-RequestTS=1727053412485, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 738700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@551d741f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:03:46.763 [boundedElastic-56] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7ff888f682038224358ef7bca2217b5a, Client-RequestTS=1727053426655, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:46.873 [boundedElastic-56] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7ff888f682038224358ef7bca2217b5a, Client-RequestTS=1727053426655, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:46.984 [boundedElastic-56] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7ff888f682038224358ef7bca2217b5a, Client-RequestTS=1727053426655, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:47.094 [boundedElastic-56] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7ff888f682038224358ef7bca2217b5a, Client-RequestTS=1727053426655, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:04:09.657 [boundedElastic-61] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=60b09ea331aabe9d5d47e46fa7b1c7d6, Client-RequestTS=1727053446646, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 360200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@37dbf2f3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:04:40.868 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 71900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@33b47959[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:43.994 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 271800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@72f2e91b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:46.741 [boundedElastic-63] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e90d77fcda6f23d229ebdd93709fc180, Client-RequestTS=1727053486637, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:04:46.843 [boundedElastic-63] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e90d77fcda6f23d229ebdd93709fc180, Client-RequestTS=1727053486637, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:04:46.943 [boundedElastic-63] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e90d77fcda6f23d229ebdd93709fc180, Client-RequestTS=1727053486637, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:04:47.044 [boundedElastic-63] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e90d77fcda6f23d229ebdd93709fc180, Client-RequestTS=1727053486637, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:04:47.207 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 881000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6db16146[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:50.521 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 439800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4cf804a2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:53.951 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 584600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4b54169f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:57.457 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 185100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@88cfd42[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:29.648 [boundedElastic-57] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d3b7540f86db9c25ce7967ccc89aa2a0, Client-RequestTS=1727053526640, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 214000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@544dc525[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:06:05.840 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODQ5Mn0.uEmW-xBcmhDzp1xqJ0y8auAR4LFy4RXrU7uNID2G9Ak, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9f97c4f1bc2204703f28db13e1b70c74, Client-RequestTS=1727053562829, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 937500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4574cc76[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] +09:06:05.840 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 937500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4574cc76[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 937500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4574cc76[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:06:11.951 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 277300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@44b542d2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:06:15.064 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 982500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4236fd7b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:06:18.272 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 324000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5c907f42[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:06:21.586 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 424500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c2d0e73[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:06:25.007 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 351500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3ffd4f28[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:06:28.538 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 269900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@109c7956[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3b3397cc, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2e011f4c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@d0ee702}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:09:05.986 [boundedElastic-56] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/car/carRail/list,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for cloud-car" +09:09:12.633 [boundedElastic-56] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/car/fence/list,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for cloud-car" +09:09:32.277 [boundedElastic-60] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/car/carRail/list,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for cloud-car" +09:09:49.241 [boundedElastic-66] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/car/carRail/list,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for cloud-car" +09:10:43.613 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053843461_117.143.60.138_55821, request = InstanceRequest +09:10:43.719 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0M30.IrQGat51RplkT0vYx3775nuI6uIsrBGKFB_jg-hyY-4, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +09:10:43.827 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0M30.IrQGat51RplkT0vYx3775nuI6uIsrBGKFB_jg-hyY-4, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:10:43.936 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0M30.IrQGat51RplkT0vYx3775nuI6uIsrBGKFB_jg-hyY-4, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:10:44.045 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0M30.IrQGat51RplkT0vYx3775nuI6uIsrBGKFB_jg-hyY-4, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:10:44.091 [main] ERROR c.a.c.n.r.NacosServiceRegistry - [register,81] - nacos registry, cloud-gateway register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='110.42.213.184:8848', username='nacos', password='nacos', endpoint='', namespace='public', watchDelay=30000, logName='', service='cloud-gateway', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='10.113.37.107', networkInterface='', port=8084, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true}}, +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 85200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@66346183[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 15 common frames omitted -19:30:28.622 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:30:28.731 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:30:28.839 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:30:28.947 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:30:28.947 [boundedElastic-28] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.registerServiceForEphemeral(NamingGrpcClientProxy.java:145) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.registerService(NamingGrpcClientProxy.java:136) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.registerService(NamingClientProxyDelegate.java:95) + at com.alibaba.nacos.client.naming.NacosNamingService.registerInstance(NacosNamingService.java:151) + at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:75) + at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) + at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) + at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) + at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) + at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at org.springframework.boot.web.reactive.context.WebServerManager.start(WebServerManager.java:57) + at org.springframework.boot.web.reactive.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:41) + at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) + at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) + at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) + at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.muyu.gateway.CloudGatewayApplication.main(CloudGatewayApplication.java:15) +09:10:46.427 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed +org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop' + at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:291) + at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) + at java.base/java.lang.Iterable.forEach(Iterable.java:75) + at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) + at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) + at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) + at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) + at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) + at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) + at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) + at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) + at com.muyu.gateway.CloudGatewayApplication.main(CloudGatewayApplication.java:15) +Caused by: java.lang.reflect.UndeclaredThrowableException: null + at org.springframework.util.ReflectionUtils.rethrowRuntimeException(ReflectionUtils.java:147) + at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:83) + at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) + at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) + at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) + at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) + at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at org.springframework.boot.web.reactive.context.WebServerManager.start(WebServerManager.java:57) + at org.springframework.boot.web.reactive.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:41) + at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) + ... 13 common frames omitted +Caused by: com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:29.412 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 762600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6b210f80[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:29.412 [boundedElastic-27] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-monitor] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 762600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6b210f80[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.registerServiceForEphemeral(NamingGrpcClientProxy.java:145) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.registerService(NamingGrpcClientProxy.java:136) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.registerService(NamingClientProxyDelegate.java:95) + at com.alibaba.nacos.client.naming.NacosNamingService.registerInstance(NacosNamingService.java:151) + at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:75) + ... 26 common frames omitted +09:13:32.916 [boundedElastic-9] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/code/gen/list,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for cloud-gen" +09:13:43.618 [boundedElastic-6] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/car/carRail/list,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for cloud-car" +09:13:55.422 [boundedElastic-3] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/car/carRail/list,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for cloud-car" +09:19:23.405 [boundedElastic-5] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/car/carRail/list,异常信息:503 SERVICE_UNAVAILABLE "Unable to find instance for cloud-car" +09:30:50.180 [reactor-http-nio-8] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo +09:55:53.727 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 284000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d0b0f4b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +09:55:53.730 [boundedElastic-46] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 284000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d0b0f4b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 762600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6b210f80[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 284000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d0b0f4b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:30:31.762 [reactor-http-nio-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:30:31.762 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:30:31.762 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:30:31.866 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:30:31.866 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:30:31.866 [reactor-http-nio-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:30:31.974 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:30:31.974 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:30:31.974 [reactor-http-nio-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:30:32.078 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:30:32.078 [reactor-http-nio-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:30:32.078 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:30:32.078 [boundedElastic-28] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:32.078 [reactor-http-nio-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at jdk.internal.reflect.GeneratedMethodAccessor119.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) - at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) - at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.cloud.gateway.route.RouteRefreshListener.reset(RouteRefreshListener.java:73) - at org.springframework.cloud.gateway.route.RouteRefreshListener.onApplicationEvent(RouteRefreshListener.java:50) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:457) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:984) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.cloud.context.named.NamedContextFactory.createContext(NamedContextFactory.java:139) - at org.springframework.cloud.context.named.NamedContextFactory.getContext(NamedContextFactory.java:123) - at org.springframework.cloud.context.named.NamedContextFactory.getInstances(NamedContextFactory.java:252) - at org.springframework.cloud.gateway.filter.ReactiveLoadBalancerClientFilter.filter(ReactiveLoadBalancerClientFilter.java:114) - at org.springframework.cloud.gateway.handler.FilteringWebHandler$GatewayFilterAdapter.filter(FilteringWebHandler.java:147) - at org.springframework.cloud.gateway.filter.OrderedGatewayFilter.filter(OrderedGatewayFilter.java:44) - at org.springframework.cloud.gateway.handler.FilteringWebHandler$DefaultGatewayFilterChain.lambda$filter$0(FilteringWebHandler.java:127) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:45) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.core.publisher.FluxSwitchIfEmpty$SwitchIfEmptySubscriber.onNext(FluxSwitchIfEmpty.java:74) - at reactor.core.publisher.FluxMap$MapSubscriber.onNext(FluxMap.java:122) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.onNext(FluxDefaultIfEmpty.java:122) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onNext(FluxMapFuseable.java:299) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onNext(FluxFilterFuseable.java:337) - at reactor.core.publisher.Operators$BaseFluxToMonoOperator.completePossiblyEmpty(Operators.java:2097) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:145) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onComplete(FluxContextWrite.java:126) - at reactor.core.publisher.Operators$ScalarSubscription.request(Operators.java:2573) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$BaseFluxToMonoOperator.request(Operators.java:2067) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.request(FluxFilterFuseable.java:411) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.request(FluxMapFuseable.java:360) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxDefaultIfEmpty$DefaultIfEmptySubscriber.request(FluxDefaultIfEmpty.java:98) - at reactor.core.publisher.FluxMap$MapSubscriber.request(FluxMap.java:164) - at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.set(Operators.java:2367) - at reactor.core.publisher.Operators$MultiSubscriptionSubscriber.onSubscribe(Operators.java:2241) - at reactor.core.publisher.FluxMap$MapSubscriber.onSubscribe(FluxMap.java:92) - at reactor.core.publisher.Operators$BaseFluxToMonoOperator.onSubscribe(Operators.java:2051) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onSubscribe(FluxContextWrite.java:101) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onSubscribe(FluxMapFuseable.java:265) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onSubscribe(FluxFilterFuseable.java:305) - at reactor.core.publisher.Operators$BaseFluxToMonoOperator.onSubscribe(Operators.java:2051) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onSubscribe(FluxContextWrite.java:101) - at reactor.core.publisher.MonoJust.subscribe(MonoJust.java:55) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.subscribeNext(MonoIgnoreThen.java:265) - at reactor.core.publisher.MonoIgnoreThen.subscribe(MonoIgnoreThen.java:51) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.subscribeNext(MonoIgnoreThen.java:265) - at reactor.core.publisher.MonoIgnoreThen.subscribe(MonoIgnoreThen.java:51) - at reactor.core.publisher.MonoDefer.subscribe(MonoDefer.java:53) - at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.subscribeNext(MonoIgnoreThen.java:241) - at reactor.core.publisher.MonoIgnoreThen$ThenIgnoreMain.onComplete(MonoIgnoreThen.java:204) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onComplete(FluxContextWrite.java:126) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:155) - at reactor.core.publisher.FluxSwitchIfEmpty$SwitchIfEmptySubscriber.onNext(FluxSwitchIfEmpty.java:74) - at reactor.core.publisher.Operators$MonoInnerProducerBase.complete(Operators.java:2864) - at reactor.core.publisher.MonoSingle$SingleSubscriber.onComplete(MonoSingle.java:180) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onComplete(FluxMapFuseable.java:152) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:159) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext(FluxOnErrorResume.java:79) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onNext(FluxOnErrorResume.java:79) - at reactor.core.publisher.FluxMapFuseable$MapFuseableSubscriber.onNext(FluxMapFuseable.java:129) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.FluxMapFuseable$MapFuseableConditionalSubscriber.onNext(FluxMapFuseable.java:299) - at reactor.core.publisher.FluxFilterFuseable$FilterFuseableConditionalSubscriber.onNext(FluxFilterFuseable.java:337) - at reactor.core.publisher.Operators$BaseFluxToMonoOperator.completePossiblyEmpty(Operators.java:2097) - at reactor.core.publisher.MonoCollect$CollectSubscriber.onComplete(MonoCollect.java:145) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.core.publisher.FluxBuffer$BufferExactSubscriber.onComplete(FluxBuffer.java:187) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onComplete(FluxPeek.java:260) - at reactor.core.publisher.FluxMap$MapSubscriber.onComplete(FluxMap.java:144) - at reactor.netty.channel.FluxReceive.onInboundComplete(FluxReceive.java:415) - at reactor.netty.channel.ChannelOperations.onInboundComplete(ChannelOperations.java:446) - at reactor.netty.http.server.HttpServerOperations.onInboundNext(HttpServerOperations.java:689) - at reactor.netty.channel.ChannelOperationsHandler.channelRead(ChannelOperationsHandler.java:114) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:444) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at reactor.netty.http.server.HttpTrafficHandler.channelRead(HttpTrafficHandler.java:286) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelRead(CombinedChannelDuplexHandler.java:436) - at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:346) - at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:318) - at io.netty.channel.CombinedChannelDuplexHandler.channelRead(CombinedChannelDuplexHandler.java:251) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:442) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:412) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1407) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:440) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:420) - at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:918) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:166) - 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:833) -19:30:32.087 [boundedElastic-27] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:32.195 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:30:32.320 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:30:32.424 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:30:32.529 [boundedElastic-28] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:30:32.529 [boundedElastic-28] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:41.500 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:30:41.608 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:30:41.712 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:30:41.816 [boundedElastic-23] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:30:41.816 [boundedElastic-23] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + ... 18 common frames omitted +09:56:48.040 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 748000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2cd3a3f2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +09:56:48.040 [boundedElastic-46] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 748000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2cd3a3f2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -5122,84 +4544,30 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:43.782 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 129401 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1cabddb2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:46.898 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 788900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5261f31a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:50.111 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 966700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@38ae5a2d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:59.403 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 306099 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@47dbc12[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:30:59.403 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 306099 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@47dbc12[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 306099 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@47dbc12[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 748000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2cd3a3f2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 14 common frames omitted -19:31:01.515 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4d89e510d1956f3ef4bfb37603df2f6, Client-RequestTS=1726572661392, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.515 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.532 [boundedElastic-30] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 700600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@488f75e3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:31:01.532 [boundedElastic-32] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 173701 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30a9ba7e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:31:01.532 [boundedElastic-30] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 700600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@488f75e3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + ... 20 common frames omitted +09:56:51.773 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:56:51.773 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:56:51.773 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:56:51.884 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:56:51.884 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:56:51.884 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:56:51.990 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:56:51.990 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:56:51.990 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.099 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.099 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.099 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.099 [boundedElastic-52] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -5212,21 +4580,14 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 700600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@488f75e3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 19 common frames omitted -19:31:01.532 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 38800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@15034c5b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:31:01.532 [boundedElastic-32] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 173701 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30a9ba7e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:52.099 [boundedElastic-46] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -5239,20 +4600,14 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 173701 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@30a9ba7e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 19 common frames omitted -19:31:01.532 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 38800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@15034c5b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:52.099 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -5263,7 +4618,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at jdk.internal.reflect.GeneratedMethodAccessor119.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) @@ -5285,53 +4640,20 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 38800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@15034c5b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 39 common frames omitted -19:31:01.624 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.624 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4d89e510d1956f3ef4bfb37603df2f6, Client-RequestTS=1726572661392, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.645 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.645 [boundedElastic-32] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.728 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.728 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4d89e510d1956f3ef4bfb37603df2f6, Client-RequestTS=1726572661392, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.753 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.753 [boundedElastic-32] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.836 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.836 [boundedElastic-10] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) - at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:01.836 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c4d89e510d1956f3ef4bfb37603df2f6, Client-RequestTS=1726572661392, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.854 [boundedElastic-32] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.854 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.961 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.961 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:52.206 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.206 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.307 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.307 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.409 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.409 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.510 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.510 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.510 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -5344,7 +4666,7 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at jdk.internal.reflect.GeneratedMethodAccessor119.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) @@ -5358,14 +4680,12 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:01.961 [boundedElastic-32] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:31:01.961 [boundedElastic-32] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:52.510 [boundedElastic-52] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -5380,17 +4700,16 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:02.065 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:31:02.166 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:31:02.270 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:31:02.373 [boundedElastic-27] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:31:02.374 [boundedElastic-27] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:52.611 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.720 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.831 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.940 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:56:52.940 [boundedElastic-52] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -5405,640 +4724,74 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:09.295 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=94d429bcd6e3dc1c1dd0f8905b8bfc68, Client-RequestTS=1726572666278, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 749500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e2df0ac[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] -19:31:09.295 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 749500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e2df0ac[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 749500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e2df0ac[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@44cbbac9, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5a234e8f, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@53bc6233}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:53.503 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 764100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6f64f109[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 10 common frames omitted -19:31:09.447 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=530cefc465da75245da8a5d62b7abe2c, Client-RequestTS=1726572669346, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:31:09.548 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=530cefc465da75245da8a5d62b7abe2c, Client-RequestTS=1726572669346, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:31:09.648 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=530cefc465da75245da8a5d62b7abe2c, Client-RequestTS=1726572669346, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:31:09.749 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=530cefc465da75245da8a5d62b7abe2c, Client-RequestTS=1726572669346, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:31:09.753 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) - at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:09.919 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf4ce747d30cd1ca978b1d9bfbf5baa6, Client-RequestTS=1726572669811, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:31:10.029 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf4ce747d30cd1ca978b1d9bfbf5baa6, Client-RequestTS=1726572669811, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:31:10.139 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bf4ce747d30cd1ca978b1d9bfbf5baa6, Client-RequestTS=1726572669811, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:31:12.657 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:31:12.770 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:31:12.879 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:31:12.989 [SpringApplicationShutdownHook] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:31:13.013 [SpringApplicationShutdownHook] ERROR c.a.c.n.r.NacosServiceRegistry - [deregister,111] - ERR_NACOS_DEREGISTER, de-register failed...NacosRegistration{nacosDiscoveryProperties=NacosDiscoveryProperties{serverAddr='47.116.173.119:8848', username='nacos', password='nacos', endpoint='', namespace='one', watchDelay=30000, logName='', service='cloud-gateway', weight=1.0, clusterName='DEFAULT', group='DEFAULT_GROUP', namingLoadCacheAtStart='false', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}, registerEnabled=true, ip='10.113.37.39', networkInterface='', port=8080, secure=false, accessKey='', secretKey='', heartBeatInterval=null, heartBeatTimeout=null, ipDeleteTimeout=null, instanceEnabled=true, ephemeral=true, failureToleranceEnabled=false}, ipDeleteTimeout=null, failFast=true}}, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doDeregisterService(NamingGrpcClientProxy.java:308) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterServiceForEphemeral(NamingGrpcClientProxy.java:293) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.deregisterService(NamingGrpcClientProxy.java:275) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.deregisterService(NamingClientProxyDelegate.java:122) - at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:204) - at com.alibaba.nacos.client.naming.NacosNamingService.deregisterInstance(NacosNamingService.java:192) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.deregister(NacosServiceRegistry.java:107) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.deregister(AbstractAutoServiceRegistration.java:281) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.stop(AbstractAutoServiceRegistration.java:299) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.destroy(AbstractAutoServiceRegistration.java:233) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMethod.invoke(InitDestroyAnnotationBeanPostProcessor.java:457) - at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeDestroyMethods(InitDestroyAnnotationBeanPostProcessor.java:415) - at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeDestruction(InitDestroyAnnotationBeanPostProcessor.java:239) - at org.springframework.beans.factory.support.DisposableBeanAdapter.destroy(DisposableBeanAdapter.java:202) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroyBean(DefaultSingletonBeanRegistry.java:587) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingleton(DefaultSingletonBeanRegistry.java:559) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingleton(DefaultListableBeanFactory.java:1202) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.destroySingletons(DefaultSingletonBeanRegistry.java:520) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.destroySingletons(DefaultListableBeanFactory.java:1195) - at org.springframework.context.support.AbstractApplicationContext.destroyBeans(AbstractApplicationContext.java:1186) - at org.springframework.context.support.AbstractApplicationContext.doClose(AbstractApplicationContext.java:1147) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.doClose(ReactiveWebServerApplicationContext.java:149) - at org.springframework.context.support.AbstractApplicationContext.close(AbstractApplicationContext.java:1093) - at org.springframework.boot.SpringApplicationShutdownHook.closeAndWait(SpringApplicationShutdownHook.java:145) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.boot.SpringApplicationShutdownHook.run(SpringApplicationShutdownHook.java:114) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:13.020 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.lang.InterruptedException: null - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:460) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:55.038 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 11500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1469015e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:56.612 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 170600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@a0a11db[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.reactive.context.WebServerManager.start(WebServerManager.java:57) - at org.springframework.boot.web.reactive.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:41) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.gateway.CloudGatewayApplication.main(CloudGatewayApplication.java:15) -19:31:58.046 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 663200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3a02172a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.reactive.context.WebServerManager.start(WebServerManager.java:57) - at org.springframework.boot.web.reactive.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:41) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.gateway.CloudGatewayApplication.main(CloudGatewayApplication.java:15) -19:32:01.050 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 972400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b870ed3[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.reactive.context.WebServerManager.start(WebServerManager.java:57) - at org.springframework.boot.web.reactive.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:41) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.gateway.CloudGatewayApplication.main(CloudGatewayApplication.java:15) -19:32:06.595 [boundedElastic-14] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 354900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7eff15df[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] -19:32:06.595 [boundedElastic-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 18100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6260237c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] -19:32:06.595 [boundedElastic-5] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 666601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fc2d686[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] -19:32:06.595 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 200201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3f679888[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] -19:32:06.595 [boundedElastic-13] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 619800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6ba5e49a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] -19:32:06.595 [boundedElastic-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 773601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@df7fee7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] -19:32:06.595 [boundedElastic-12] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 741899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c9d9250[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] -19:32:06.598 [boundedElastic-3] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-auth] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 18100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6260237c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 18100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6260237c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:32:06.598 [boundedElastic-12] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-monitor] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 741899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c9d9250[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 741899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c9d9250[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:32:06.598 [boundedElastic-13] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-file] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 619800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6ba5e49a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 619800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6ba5e49a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:32:06.598 [boundedElastic-5] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-auth] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 666601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fc2d686[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 666601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fc2d686[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:32:06.598 [boundedElastic-14] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-monitor] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 354900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7eff15df[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 354900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7eff15df[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:32:06.598 [boundedElastic-6] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-gen] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 773601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@df7fee7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 773601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@df7fee7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:32:06.598 [boundedElastic-10] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$loadInstancesFromNacos$1,75] - get service instance[cloud-file] from nacos error! -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 200201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3f679888[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.subscribe(NamingGrpcClientProxy.java:379) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.subscribe(NamingClientProxyDelegate.java:170) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfoBySubscribe(NacosNamingService.java:330) - at com.alibaba.nacos.client.naming.NacosNamingService.getServiceInfo(NacosNamingService.java:351) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:299) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:275) - at com.alibaba.nacos.client.naming.NacosNamingService.selectInstances(NacosNamingService.java:263) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getInstances(NacosServiceDiscovery.java:58) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$loadInstancesFromNacos$1(NacosReactiveDiscoveryClient.java:68) - at reactor.core.publisher.FluxFlatMap.trySubscribeScalarMap(FluxFlatMap.java:153) - at reactor.core.publisher.MonoFlatMapMany.subscribeOrReturn(MonoFlatMapMany.java:49) - at reactor.core.publisher.FluxFromMonoOperator.subscribe(FluxFromMonoOperator.java:77) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 200201 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3f679888[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 25 common frames omitted -19:32:06.737 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:06.737 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:06.846 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:06.846 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:06.956 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:06.956 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.004 [boundedElastic-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.068 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.068 [boundedElastic-10] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:07.068 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 962900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b196250[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] -19:32:07.068 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.068 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation NONE for DEFAULT_GROUP@@cloud-gen# failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 962900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b196250[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) - at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 962900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b196250[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@43a09ce2, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f183caa, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@7b66322e}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:59.832 [com.alibaba.nacos.client.remote.worker.0] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 978800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6fa71a86[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:12.337 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwMn0.W7j5rvyfohSg3bwJJ8A0iBxGY_fQjFwC5bc2OOqG2Gg, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18417597be2317bda1bc7b7e6192b15a, Client-RequestTS=1727056629331, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 215300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1e3259c2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +09:57:12.337 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 215300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1e3259c2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 215300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1e3259c2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 14 common frames omitted -19:32:07.068 [main] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) - at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) - at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.cloud.gateway.route.RouteRefreshListener.reset(RouteRefreshListener.java:73) - at org.springframework.cloud.gateway.route.RouteRefreshListener.onApplicationEvent(RouteRefreshListener.java:54) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:169) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) - at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) - at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) - at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) - at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.reactive.context.WebServerManager.start(WebServerManager.java:57) - at org.springframework.boot.web.reactive.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:41) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.gateway.CloudGatewayApplication.main(CloudGatewayApplication.java:15) -19:32:07.114 [boundedElastic-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.175 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.191 [boundedElastic-12] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.191 [boundedElastic-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.191 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.206 [boundedElastic-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.206 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.206 [boundedElastic-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.221 [boundedElastic-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.276 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.297 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.297 [boundedElastic-12] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.297 [boundedElastic-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.312 [boundedElastic-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.312 [boundedElastic-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.312 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.328 [boundedElastic-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.328 [boundedElastic-6] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) - at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:07.391 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.407 [boundedElastic-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.407 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.407 [boundedElastic-12] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.421 [boundedElastic-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.421 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.421 [boundedElastic-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.498 [boundedElastic-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.498 [boundedElastic-10] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + ... 9 common frames omitted +09:57:25.512 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 85400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@69259305[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +09:57:25.512 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 69700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4f47de5b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +09:57:25.512 [boundedElastic-42] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 91100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5f792ab6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +09:57:25.512 [boundedElastic-49] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 85400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@69259305[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -6051,39 +4804,19 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:07.514 [boundedElastic-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.514 [boundedElastic-4] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:07.515 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.515 [boundedElastic-12] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.516 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 85400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@69259305[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 18 common frames omitted +09:57:25.512 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 69700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4f47de5b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -6094,8 +4827,7 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) @@ -6117,13 +4849,49 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:07.516 [boundedElastic-12] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 69700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4f47de5b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 38 common frames omitted +09:57:25.512 [boundedElastic-42] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 91100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5f792ab6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 91100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5f792ab6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 18 common frames omitted +09:57:25.614 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:25.614 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:25.723 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:25.723 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:25.831 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:25.831 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:25.940 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:25.940 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:25.940 [boundedElastic-49] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -6138,58 +4906,12 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:07.530 [boundedElastic-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.530 [boundedElastic-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.530 [boundedElastic-3] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:07.530 [boundedElastic-7] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) - at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) - at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) - at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:07.531 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.531 [main] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:25.940 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -6202,8 +4924,195 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:26.050 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:57:26.159 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:57:26.269 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:57:26.380 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:57:26.380 [boundedElastic-49] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:59:03.988 [boundedElastic-16] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 975700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3f2f7da0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +09:59:03.988 [boundedElastic-16] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 975700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3f2f7da0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 975700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3f2f7da0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 18 common frames omitted +09:59:05.136 [boundedElastic-53] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:59:05.245 [boundedElastic-53] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:59:05.354 [boundedElastic-53] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:59:05.463 [boundedElastic-53] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:59:05.463 [boundedElastic-53] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) + at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:59:34.512 [boundedElastic-42] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 675400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c717299[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +09:59:34.512 [boundedElastic-42] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 675400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c717299[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 675400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3c717299[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 18 common frames omitted +10:01:06.860 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 314300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@85bdadf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:01:06.860 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 349100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@91b5043[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:01:06.860 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 355600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5c69411f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:01:06.860 [boundedElastic-52] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 349100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@91b5043[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 349100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@91b5043[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 18 common frames omitted +10:01:06.860 [boundedElastic-46] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 314300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@85bdadf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 314300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@85bdadf[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 18 common frames omitted +10:01:06.860 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 355600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5c69411f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) @@ -6215,34 +5124,488 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) at org.springframework.cloud.gateway.route.RouteRefreshListener.reset(RouteRefreshListener.java:73) - at org.springframework.cloud.gateway.route.RouteRefreshListener.onApplicationEvent(RouteRefreshListener.java:50) + at org.springframework.cloud.gateway.route.RouteRefreshListener.resetIfNeeded(RouteRefreshListener.java:68) + at org.springframework.cloud.gateway.route.RouteRefreshListener.onApplicationEvent(RouteRefreshListener.java:62) at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:984) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.reactive.context.ReactiveWebServerApplicationContext.refresh(ReactiveWebServerApplicationContext.java:66) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.gateway.CloudGatewayApplication.main(CloudGatewayApplication.java:15) -19:32:07.625 [boundedElastic-12] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.625 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.640 [boundedElastic-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:32:07.640 [main] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:59:12.714 [reactor-http-nio-7] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/auth/login,异常信息:Connection timed out: no further information: /192.168.153.1:9500 -20:00:31.205 [reactor-http-nio-11] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/auth/login,异常信息:Connection timed out: no further information: /192.168.153.1:9500 -20:00:53.857 [reactor-http-nio-14] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/system/user/getInfo,异常信息:Connection timed out: no further information: /192.168.153.1:9701 -20:01:01.458 [reactor-http-nio-16] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/system/user/getInfo,异常信息:Connection refused: no further information: /10.113.37.20:9701 -20:01:03.943 [reactor-http-nio-15] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/auth/logout,异常信息:Connection timed out: no further information: /192.168.153.1:9500 -20:01:25.595 [reactor-http-nio-18] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -20:01:25.665 [reactor-http-nio-19] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -20:01:27.032 [reactor-http-nio-2] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -20:01:46.721 [reactor-http-nio-1] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/auth/logout,异常信息:Connection timed out: no further information: /192.168.153.1:9500 -20:33:15.018 [reactor-http-nio-19] ERROR c.m.g.f.AuthFilter - [unauthorizedResponse,93] - [鉴权异常处理]请求路径:/system/user/getInfo -20:36:27.405 [reactor-http-nio-10] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/code/gen/9,异常信息:Connection prematurely closed BEFORE response -20:36:51.787 [reactor-http-nio-11] ERROR c.m.g.h.GatewayExceptionHandler - [handle,44] - [网关异常处理]请求路径:/system/user/getInfo,异常信息:Connection timed out: no further information: /10.113.37.10:9701 + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 355600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5c69411f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 38 common frames omitted +10:01:06.971 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:06.971 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.079 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.079 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.189 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.189 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.299 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.299 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.299 [boundedElastic-46] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:07.299 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:07.406 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.508 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.611 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.719 [boundedElastic-46] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:07.719 [boundedElastic-46] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:08.032 [boundedElastic-56] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 811200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4f008fbd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:01:08.032 [boundedElastic-56] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 811200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4f008fbd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) + at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 811200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4f008fbd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 20 common frames omitted +10:01:23.491 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 127200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2810a09d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:01:23.491 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 127200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2810a09d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 127200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2810a09d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 13 common frames omitted +10:01:25.136 [boundedElastic-50] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:25.245 [boundedElastic-50] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:25.354 [boundedElastic-50] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:25.463 [boundedElastic-50] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:25.463 [boundedElastic-50] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) + at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:29.645 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 570200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fe22ef3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:01:29.646 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-car# failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 570200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fe22ef3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 570200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fe22ef3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 13 common frames omitted +10:02:08.049 [boundedElastic-16] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigQueryRequest{headers={charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a71a757b66602456cd306d0e2403f8d5, Client-RequestTS=1727056925038, exConfigInfo=true, notify=false}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 306200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@62712c5e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:02:10.664 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 634500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6a13dd90[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:02:10.664 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 754600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c47cc93[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:02:10.664 [boundedElastic-49] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 634500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6a13dd90[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 634500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6a13dd90[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 18 common frames omitted +10:02:10.664 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 754600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c47cc93[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at org.springframework.cloud.gateway.route.RouteRefreshListener.reset(RouteRefreshListener.java:73) + at org.springframework.cloud.gateway.route.RouteRefreshListener.resetIfNeeded(RouteRefreshListener.java:68) + at org.springframework.cloud.gateway.route.RouteRefreshListener.onApplicationEvent(RouteRefreshListener.java:62) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 754600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@c47cc93[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 38 common frames omitted +10:02:10.765 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:02:10.765 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:02:10.866 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:02:10.866 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:02:10.967 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:02:10.967 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:02:11.067 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:02:11.067 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:02:11.067 [boundedElastic-49] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:02:11.067 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:02:11.168 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:02:11.270 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:02:11.378 [boundedElastic-49] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:02:44.204 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 267800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@33b3d029[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:02:44.204 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 258800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2decc026[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] +10:02:44.204 [boundedElastic-52] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 258800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2decc026[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 258800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2decc026[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 18 common frames omitted +10:02:44.204 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 267800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@33b3d029[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at com.github.xiaoymin.knife4j.spring.gateway.discover.ServiceChangeListener.discover(ServiceChangeListener.java:49) + at jdk.internal.reflect.GeneratedMethodAccessor91.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 267800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@33b3d029[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@148e069e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@71361509, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@526b5694}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 30 common frames omitted +10:02:44.312 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:02:44.424 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:02:44.532 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:02:44.641 [boundedElastic-52] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:02:44.641 [boundedElastic-52] ERROR c.a.c.n.d.r.NacosReactiveDiscoveryClient - [lambda$getServices$3,94] - get services from nacos server fail, +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.reactive.NacosReactiveDiscoveryClient.lambda$getServices$3(NacosReactiveDiscoveryClient.java:87) + at reactor.core.publisher.FluxDefer.subscribe(FluxDefer.java:46) + at reactor.core.publisher.FluxSubscribeOn$SubscribeOnSubscriber.run(FluxSubscribeOn.java:194) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:84) + at reactor.core.scheduler.WorkerTask.call(WorkerTask.java:37) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:02:45.139 [boundedElastic-50] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:02:45.249 [boundedElastic-50] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:02:45.360 [boundedElastic-50] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:02:45.468 [boundedElastic-50] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MjEwOH0.Zl12PTjjBWjGGk43ehlw8UiifesNdefvknTReACfOSA, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:02:45.468 [boundedElastic-50] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) + at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:02:48.047 [boundedElastic-56] ERROR c.a.n.client.naming - [callServer,447] - [NA] failed to request +java.net.SocketTimeoutException: Connect timed out + at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:551) + at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602) + at java.base/java.net.Socket.connect(Socket.java:633) + at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) + at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534) + at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639) + at java.base/sun.net.www.http.HttpClient.(HttpClient.java:282) + at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387) + at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409) + at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) + at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) + at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) + at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) + at com.alibaba.nacos.common.http.client.request.JdkHttpClientRequest.execute(JdkHttpClientRequest.java:114) + at com.alibaba.nacos.common.http.client.NacosRestTemplate.execute(NacosRestTemplate.java:482) + at com.alibaba.nacos.common.http.client.NacosRestTemplate.exchangeForm(NacosRestTemplate.java:427) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.callServer(NamingHttpClientProxy.java:429) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:364) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:335) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:330) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.serverHealthy(NamingHttpClientProxy.java:272) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.serverHealthy(NamingClientProxyDelegate.java:191) + at com.alibaba.nacos.client.naming.NacosNamingService.getServerStatus(NacosNamingService.java:480) + at com.alibaba.cloud.nacos.discovery.actuate.health.NacosDiscoveryHealthIndicator.doHealthCheck(NacosDiscoveryHealthIndicator.java:62) + at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) + at reactor.core.publisher.MonoCallable.call(MonoCallable.java:72) + at reactor.core.publisher.FluxSubscribeOnCallable$CallableSubscribeOnSubscription.run(FluxSubscribeOnCallable.java:228) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) diff --git a/logs/cloud-gateway/info.2024-09-16.log b/logs/cloud-gateway/info.2024-09-16.log index 1df9468..fc10e4e 100644 --- a/logs/cloud-gateway/info.2024-09-16.log +++ b/logs/cloud-gateway/info.2024-09-16.log @@ -1,713 +1,151 @@ -20:12:17.353 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:36.353 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:40.357 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -20:13:41.070 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -20:13:41.710 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -20:13:41.713 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -20:13:41.713 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -20:13:41.713 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -20:13:41.713 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -20:13:41.713 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -20:13:41.714 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -20:13:41.714 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -20:13:41.714 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -20:13:41.714 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:13:41.714 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:13:41.717 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:13:41.717 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:13:41.720 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -20:13:41.730 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -20:13:41.730 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0 -20:13:41.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7edc0 -20:13:41.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7f1e0 -20:13:41.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:13:41.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:13:41.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:13:41.732 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:13:41.962 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726488823477_39.144.43.42_62463 -20:13:41.962 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:41.962 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Notify connected event to listeners. -20:13:41.963 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8440 -20:13:41.963 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [9c7ab5cb-e7f1-4ba4-8dd6-f3e65c809abf_config-0] Connected,notify listen context... -20:13:42.641 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:13:42.642 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:13:42.643 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:13:42.648 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:13:42.652 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:13:42.653 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:13:42.848 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 5f323e20-23d8-4562-8fa5-4230e458261b -20:13:42.849 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->5f323e20-23d8-4562-8fa5-4230e458261b -20:13:42.849 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:13:42.850 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:13:42.850 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:13:42.851 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:13:42.851 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:13:43.085 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726488824607_39.144.43.42_62464 -20:13:43.086 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:43.086 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Notify connected event to listeners. -20:13:43.086 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8440 -20:13:43.086 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:13:43.087 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.0.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:13:43.162 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.0.139:8080 register finished -20:13:43.244 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:13:43.245 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:13:43.245 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:13:43.245 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:13:43.245 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:13:43.245 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:13:43.245 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:13:43.245 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:13:43.261 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:13:43.262 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:13:43.262 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:13:43.262 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:13:43.262 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:13:43.262 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:13:43.262 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:13:43.262 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:13:43.331 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:43.331 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:43.331 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:43.331 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:43.333 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:43.333 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:43.333 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:43.333 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:43.495 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:13:43.653 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 10.92 seconds (process running for 11.532) -20:13:43.656 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -20:13:43.657 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -20:13:43.657 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -20:13:43.657 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -20:13:43.657 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -20:13:43.658 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -20:13:43.659 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -20:13:43.659 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:13:43.660 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -20:13:43.705 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10220 -20:13:43.705 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10220 -20:13:43.914 [nacos-grpc-client-executor-47.116.173.119-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10221 -20:13:43.914 [nacos-grpc-client-executor-47.116.173.119-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10221 -20:13:43.918 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10222 -20:13:43.918 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10222 -20:13:43.921 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10223 -20:13:43.922 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10223 -20:14:13.726 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:14:13.726 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:14:13.726 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:14:13.727 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:14:13.727 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:14:13.727 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:14:13.727 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:14:13.727 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:14:13.801 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:14:13.801 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:14:13.801 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:14:13.801 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:14:13.801 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:13.805 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:13.806 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:13.806 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:14.310 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10227 -20:14:14.310 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10227 -20:14:14.314 [nacos-grpc-client-executor-47.116.173.119-80] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10228 -20:14:14.314 [nacos-grpc-client-executor-47.116.173.119-80] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10228 -20:17:11.549 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5650e009[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@4ba9f81d, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1564/0x00000008015af928@7d81a395, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:17:11 GMT", connection:"close"] - 耗时/时间=1670MS-2024-09-16 20:17:09-2024-09-16 20:17:11 -]] -20:17:12.216 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1d284560[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:17:12 GMT", connection:"close"] - 耗时/时间=378MS-2024-09-16 20:17:11-2024-09-16 20:17:12 -]] -20:17:12.712 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7666484f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:17:12 GMT", connection:"close"] - 耗时/时间=104MS-2024-09-16 20:17:12-2024-09-16 20:17:12 -]] -20:17:17.249 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@579aa30[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:17:17 GMT", connection:"close"] - 耗时/时间=1045MS-2024-09-16 20:17:16-2024-09-16 20:17:17 -]] -20:17:19.768 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@a9c2898[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:17:19 GMT", connection:"close"] - 耗时/时间=278MS-2024-09-16 20:17:19-2024-09-16 20:17:19 -]] -20:17:26.300 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7e8500a5[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[2], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:05","updateBy":null,"updateTime":"2024-09-14 14:12:44","remark":null,"tableId":null,"tableName":"sys_logininfor","tableComment":"系统访问记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:05","updateBy":null,"updateTime":"2024-09-14 14:12:44","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:04","updateBy":null,"updateTime":"2024-09-14 12:20:04","remark":null,"tableId":null,"tableName":"sys_dict_type","tableComment":"字典类型表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:04","updateBy":null,"updateTime":"2024-09-14 12:20:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:02","updateBy":null,"updateTime":"2024-09-14 12:20:02","remark":null,"tableId":null,"tableName":"sys_dict_data","tableComment":"字典数据表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:02","updateBy":null,"updateTime":"2024-09-14 12:20:02","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:00","updateBy":null,"updateTime":"2024-09-14 12:20:00","remark":null,"tableId":null,"tableName":"sys_dept","tableComment":"部门表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:00","updateBy":null,"updateTime":"2024-09-14 12:20:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:19:59","updateBy":null,"updateTime":"2024-09-14 12:19:59","remark":null,"tableId":null,"tableName":"sys_config","tableComment":"参数配置表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:19:59","updateBy":null,"updateTime":"2024-09-14 12:19:59","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"edit":false,"superColumn":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:17:26 GMT", connection:"close"] - 耗时/时间=179MS-2024-09-16 20:17:26-2024-09-16 20:17:26 -]] -20:22:25.184 [nacos-grpc-client-executor-47.116.173.119-288] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10231 -20:22:25.185 [nacos-grpc-client-executor-47.116.173.119-288] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:22:25.186 [nacos-grpc-client-executor-47.116.173.119-288] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -20:22:25.186 [nacos-grpc-client-executor-47.116.173.119-288] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10231 -20:22:25.276 [nacos-grpc-client-executor-47.116.173.119-289] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10233 -20:22:25.277 [nacos-grpc-client-executor-47.116.173.119-289] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:22:25.277 [nacos-grpc-client-executor-47.116.173.119-289] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:22:25.279 [nacos-grpc-client-executor-47.116.173.119-289] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10233 -20:22:25.480 [nacos-grpc-client-executor-47.116.173.119-290] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10235 -20:22:25.481 [nacos-grpc-client-executor-47.116.173.119-290] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:22:25.481 [nacos-grpc-client-executor-47.116.173.119-290] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:22:25.483 [nacos-grpc-client-executor-47.116.173.119-290] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10235 -20:22:25.485 [nacos-grpc-client-executor-47.116.173.119-291] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Receive server push request, request = NotifySubscriberRequest, requestId = 10236 -20:22:25.485 [nacos-grpc-client-executor-47.116.173.119-291] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:22:25.486 [nacos-grpc-client-executor-47.116.173.119-291] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:22:25.488 [nacos-grpc-client-executor-47.116.173.119-291] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5f323e20-23d8-4562-8fa5-4230e458261b] Ack server push request, request = NotifySubscriberRequest, requestId = 10236 -20:22:26.778 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:22:26.778 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.0.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:22:26.865 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:22:26.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:22:26.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:22:26.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:22:26.866 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->5f323e20-23d8-4562-8fa5-4230e458261b -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3426ae5c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 174] -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@15b2e374[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:22:26.867 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726488824607_39.144.43.42_62464 -20:22:26.870 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4249fd19[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 293] -20:22:26.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->5f323e20-23d8-4562-8fa5-4230e458261b -20:22:26.870 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:22:26.870 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:22:26.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:27:43.821 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:27:47.564 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -20:27:48.106 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -20:27:48.685 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -20:27:48.685 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -20:27:48.685 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -20:27:48.685 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -20:27:48.685 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -20:27:48.685 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -20:27:48.686 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -20:27:48.686 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -20:27:48.686 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -20:27:48.686 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:27:48.686 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:27:48.689 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:27:48.689 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:27:48.690 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -20:27:48.703 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -20:27:48.704 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 56013b43-b838-45a9-b626-4ce36d1fd493_config-0 -20:27:48.704 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000011d01b86dc0 -20:27:48.704 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000011d01b871e0 -20:27:48.704 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:27:48.705 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:27:48.705 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:27:48.706 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:27:49.051 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489670502_39.144.43.42_62475 -20:27:49.051 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:27:49.052 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Notify connected event to listeners. -20:27:49.052 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x0000011d01cc0678 -20:27:49.052 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [56013b43-b838-45a9-b626-4ce36d1fd493_config-0] Connected,notify listen context... -20:27:49.525 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:27:49.525 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:27:49.525 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:27:49.530 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:27:49.534 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:27:49.535 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:27:49.727 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459 -20:27:49.730 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459 -20:27:49.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:27:49.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:27:49.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:27:49.731 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:27:49.731 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:27:50.011 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489671517_39.144.43.42_62476 -20:27:50.012 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Notify connected event to listeners. -20:27:50.012 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:27:50.012 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:27:50.012 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x0000011d01cc0678 -20:27:50.013 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.0.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:27:50.105 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.0.139:8080 register finished -20:27:50.207 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:27:50.207 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:27:50.207 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:27:50.207 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:27:50.208 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:27:50.208 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:27:50.208 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:27:50.208 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:27:50.208 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:27:50.208 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:27:50.208 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:27:50.208 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:27:50.272 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:27:50.272 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:27:50.272 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:27:50.273 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:27:50.273 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:27:50.274 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:27:50.366 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:27:50.450 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 9.928 seconds (process running for 10.54) -20:27:50.453 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -20:27:50.453 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -20:27:50.454 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -20:27:50.454 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -20:27:50.454 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -20:27:50.454 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -20:27:50.456 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -20:27:50.456 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:27:50.456 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -20:27:50.701 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10243 -20:27:50.702 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10243 -20:27:50.797 [nacos-grpc-client-executor-47.116.173.119-48] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10244 -20:27:50.798 [nacos-grpc-client-executor-47.116.173.119-48] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10244 -20:27:50.801 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10245 -20:27:50.805 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10245 -20:28:20.588 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:28:20.588 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:28:20.589 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:28:20.589 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:28:20.589 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:28:20.589 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:28:20.589 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:28:20.589 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:28:20.589 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:28:20.589 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:28:20.589 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:28:20.590 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:28:20.641 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:28:20.640 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:28:20.642 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:28:20.642 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:28:20.642 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:28:20.643 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:28:20.647 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:28:20.647 [boundedElastic-10] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:28:20.647 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:28:20.647 [boundedElastic-10] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:28:20.648 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:28:20.649 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:28:21.204 [nacos-grpc-client-executor-47.116.173.119-87] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10251 -20:28:21.204 [nacos-grpc-client-executor-47.116.173.119-87] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10251 -20:28:21.206 [nacos-grpc-client-executor-47.116.173.119-88] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10252 -20:28:21.207 [nacos-grpc-client-executor-47.116.173.119-88] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10252 -20:28:21.208 [nacos-grpc-client-executor-47.116.173.119-89] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10253 -20:28:21.208 [nacos-grpc-client-executor-47.116.173.119-89] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10253 -20:28:38.009 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@e7dd87d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:28:37 GMT", connection:"close"] - 耗时/时间=497MS-2024-09-16 20:28:37-2024-09-16 20:28:37 -]] -20:28:38.288 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@21b5407[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:28:37 GMT", connection:"close"] - 耗时/时间=185MS-2024-09-16 20:28:38-2024-09-16 20:28:38 -]] -20:28:42.800 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@763d211f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:28:42 GMT", connection:"close"] - 耗时/时间=1079MS-2024-09-16 20:28:41-2024-09-16 20:28:42 -]] -20:28:44.456 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6e4ff81[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:28:44 GMT", connection:"close"] - 耗时/时间=324MS-2024-09-16 20:28:44-2024-09-16 20:28:44 -]] -20:28:47.870 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6cfd7341[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Name for argument of type [java.lang.String] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag.","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:28:47 GMT", connection:"close"] - 耗时/时间=72MS-2024-09-16 20:28:47-2024-09-16 20:28:47 -]] -20:28:53.107 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@b0c9032[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"insert":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:28:53 GMT", connection:"close"] - 耗时/时间=211MS-2024-09-16 20:28:52-2024-09-16 20:28:53 -]] -20:28:57.080 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@33b0827e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=ErDTJ/NIvVXSQyupQgKuO/K4TMgqzwbT4YGHet0R1B8atxT7Fh6PLCpud+hgmbqub4IUaBdCPHk5idoVd1TdbQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRkNjE2ODQ2LTdmMTItNGJhYi04OTkxLTUyNzdkNDFlZTYwNSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY0ODkwMzEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.EqoM4kgk0LVo2-erFDgubO8zV4WO-f-tm-gD1l4H2CI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"4d616846-7f12-4bab-8991-5277d41ee605", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Name for argument of type [java.lang.String] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag.","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 16 Sep 2024 12:28:57 GMT", connection:"close"] - 耗时/时间=78MS-2024-09-16 20:28:57-2024-09-16 20:28:57 -]] -20:31:11.272 [nacos-grpc-client-executor-47.116.173.119-166] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10303 -20:31:11.273 [nacos-grpc-client-executor-47.116.173.119-166] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:31:11.273 [nacos-grpc-client-executor-47.116.173.119-166] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:31:11.274 [nacos-grpc-client-executor-47.116.173.119-166] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10303 -20:31:11.277 [nacos-grpc-client-executor-47.116.173.119-167] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10305 -20:31:11.278 [nacos-grpc-client-executor-47.116.173.119-167] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:31:11.278 [nacos-grpc-client-executor-47.116.173.119-167] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -20:31:11.279 [nacos-grpc-client-executor-47.116.173.119-167] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10305 -20:31:11.367 [nacos-grpc-client-executor-47.116.173.119-169] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10307 -20:31:11.367 [nacos-grpc-client-executor-47.116.173.119-169] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:31:11.368 [nacos-grpc-client-executor-47.116.173.119-169] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:31:11.369 [nacos-grpc-client-executor-47.116.173.119-169] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10307 -20:31:11.477 [nacos-grpc-client-executor-47.116.173.119-170] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Receive server push request, request = NotifySubscriberRequest, requestId = 10309 -20:31:11.477 [nacos-grpc-client-executor-47.116.173.119-170] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:31:11.478 [nacos-grpc-client-executor-47.116.173.119-170] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:31:11.480 [nacos-grpc-client-executor-47.116.173.119-170] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459] Ack server push request, request = NotifySubscriberRequest, requestId = 10309 -20:31:12.780 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:31:12.780 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.0.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:31:12.827 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:31:12.828 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:31:12.828 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:31:12.828 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:31:12.828 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:31:12.828 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:31:12.828 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:31:12.828 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:31:12.828 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:31:12.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:31:12.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:31:12.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:31:12.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459 -20:31:12.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7e7beed6[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 67] -20:31:12.829 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:31:12.830 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@590a516[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:31:12.830 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489671517_39.144.43.42_62476 -20:31:12.833 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6bb6ca8[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 172] -20:31:12.834 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b27ea2d7-2313-4eea-b3d4-aa8f5ad1f459 -20:31:12.834 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:31:12.834 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:31:12.835 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:31:36.541 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:31:40.308 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -20:31:40.734 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -20:31:41.168 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -20:31:41.168 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -20:31:41.168 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -20:31:41.168 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -20:31:41.168 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -20:31:41.168 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -20:31:41.169 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -20:31:41.169 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -20:31:41.169 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -20:31:41.169 [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:41.169 [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:41.171 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:31:41.172 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:31:41.173 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -20:31:41.179 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -20:31:41.180 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7a913968-684f-45f5-9d18-c5f872fae913_config-0 -20:31:41.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7e500 -20:31:41.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7e920 -20:31:41.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:31:41.180 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:31:41.181 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:31:41.181 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:31:41.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489902902_39.144.43.42_62493 -20:31:41.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:31:41.337 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8228 -20:31:41.337 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Notify connected event to listeners. -20:31:41.337 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [7a913968-684f-45f5-9d18-c5f872fae913_config-0] Connected,notify listen context... -20:31:41.747 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:31:41.748 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:31:41.748 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:31:41.751 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:31:41.754 [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:41.754 [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:41.882 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7681e805-c78d-4666-b19d-4c44fc77b85e -20:31:41.884 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->7681e805-c78d-4666-b19d-4c44fc77b85e -20:31:41.884 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:31:41.884 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:31:41.884 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:31:41.885 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:31:41.885 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:31:42.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489903617_39.144.43.42_62495 -20:31:42.035 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:31:42.037 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Notify connected event to listeners. -20:31:42.037 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8228 -20:31:42.037 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:31:42.038 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.0.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:31:42.080 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.0.139:8080 register finished -20:31:42.165 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:31:42.165 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:31:42.165 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:31:42.165 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:31:42.165 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:31:42.165 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:31:42.165 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:31:42.165 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:31:42.165 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:31:42.165 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:31:42.165 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:31:42.166 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:31:42.166 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:31:42.166 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:31:42.166 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:31:42.167 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:31:42.167 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:31:42.167 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:31:42.167 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:31:42.168 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:31:42.168 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:31:42.168 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:31:42.168 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:31:42.169 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:31:42.230 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:31:42.230 [boundedElastic-10] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -20:31:42.231 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:31:42.231 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.231 [boundedElastic-13] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.231 [boundedElastic-12] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.231 [boundedElastic-10] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -20:31:42.231 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:31:42.232 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:31:42.232 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.232 [boundedElastic-13] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.232 [boundedElastic-12] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.243 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10319 -20:31:42.243 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.245 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.246 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10319 -20:31:42.328 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:31:42.395 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 9.2 seconds (process running for 9.787) -20:31:42.399 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -20:31:42.400 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -20:31:42.400 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -20:31:42.400 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -20:31:42.400 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -20:31:42.400 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -20:31:42.402 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -20:31:42.402 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:31:42.402 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -20:31:42.690 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10321 -20:31:42.691 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.692 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.694 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10321 -20:31:42.799 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10323 -20:31:42.799 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10323 -20:31:42.802 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10324 -20:31:42.804 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10324 -20:31:42.807 [nacos-grpc-client-executor-47.116.173.119-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10325 -20:31:42.808 [nacos-grpc-client-executor-47.116.173.119-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10325 -20:31:42.811 [nacos-grpc-client-executor-47.116.173.119-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10326 -20:31:42.812 [nacos-grpc-client-executor-47.116.173.119-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10326 -20:31:47.989 [nacos-grpc-client-executor-47.116.173.119-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10327 -20:31:47.990 [nacos-grpc-client-executor-47.116.173.119-6] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:47.990 [nacos-grpc-client-executor-47.116.173.119-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:47.991 [nacos-grpc-client-executor-47.116.173.119-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10327 -20:32:14.799 [nacos-grpc-client-executor-47.116.173.119-77] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10329 -20:32:14.799 [nacos-grpc-client-executor-47.116.173.119-77] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:14.799 [nacos-grpc-client-executor-47.116.173.119-77] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -20:32:14.801 [nacos-grpc-client-executor-47.116.173.119-77] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10329 -20:32:14.896 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10331 -20:32:14.896 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:14.897 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:32:14.898 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10331 -20:32:15.041 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10333 -20:32:15.041 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:15.041 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:32:15.042 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10333 -20:32:15.166 [nacos-grpc-client-executor-47.116.173.119-80] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Receive server push request, request = NotifySubscriberRequest, requestId = 10335 -20:32:15.167 [nacos-grpc-client-executor-47.116.173.119-80] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:15.167 [nacos-grpc-client-executor-47.116.173.119-80] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:32:15.168 [nacos-grpc-client-executor-47.116.173.119-80] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7681e805-c78d-4666-b19d-4c44fc77b85e] Ack server push request, request = NotifySubscriberRequest, requestId = 10335 -20:32:16.403 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:32:16.403 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.0.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:32:16.450 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:32:16.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:32:16.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:32:16.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:32:16.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7681e805-c78d-4666-b19d-4c44fc77b85e -20:32:16.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6e2107ce[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 11] -20:32:16.452 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:32:16.452 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7f25d757[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:32:16.452 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489903617_39.144.43.42_62495 -20:32:16.455 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@61064ad7[Running, pool size = 16, active threads = 0, queued tasks = 0, completed tasks = 89] -20:32:16.456 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7681e805-c78d-4666-b19d-4c44fc77b85e -20:32:16.457 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:32:16.457 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:32:16.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -21:04:27.107 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -21:04:30.777 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -21:04:31.387 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -21:04:31.963 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -21:04:31.963 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -21:04:31.963 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -21:04:31.963 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -21:04:31.963 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -21:04:31.963 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -21:04:31.964 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -21:04:31.964 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -21:04:31.964 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -21:04:31.964 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -21:04:31.965 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -21:04:31.967 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -21:04:31.968 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -21:04:31.970 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -21:04:31.979 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -21:04:31.980 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f4c63172-6d53-46e8-9918-f6361d8738c7_config-0 -21:04:31.980 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7eb48 -21:04:31.980 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7ef68 -21:04:31.980 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -21:04:31.981 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -21:04:31.981 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -21:04:31.981 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -21:04:32.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726491873757_39.144.43.42_63061 -21:04:32.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -21:04:32.199 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Notify connected event to listeners. -21:04:32.199 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8870 -21:04:32.199 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f4c63172-6d53-46e8-9918-f6361d8738c7_config-0] Connected,notify listen context... -21:04:32.817 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -21:04:32.818 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -21:04:32.818 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -21:04:32.822 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -21:04:32.825 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -21:04:32.825 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -21:04:33.211 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f02260e6-a334-4f81-9430-e800d0e1090c -21:04:33.213 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->f02260e6-a334-4f81-9430-e800d0e1090c -21:04:33.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -21:04:33.213 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -21:04:33.214 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -21:04:33.215 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -21:04:33.216 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -21:04:33.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726491875062_39.144.43.42_63062 -21:04:33.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -21:04:33.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Notify connected event to listeners. -21:04:33.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8870 -21:04:33.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -21:04:33.564 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.0.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -21:04:33.645 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.0.139:8080 register finished -21:04:33.739 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -21:04:33.739 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -21:04:33.739 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -21:04:33.739 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -21:04:33.739 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -21:04:33.740 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -21:04:33.746 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -21:04:33.746 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -21:04:33.746 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -21:04:33.746 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -21:04:33.746 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -21:04:33.746 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -21:04:33.835 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -21:04:33.835 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -21:04:33.835 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -21:04:33.837 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -21:04:33.837 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -21:04:33.837 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -21:04:33.981 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -21:04:34.056 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 10.449 seconds (process running for 11.06) -21:04:34.059 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -21:04:34.059 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -21:04:34.059 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -21:04:34.059 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -21:04:34.060 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -21:04:34.060 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -21:04:34.061 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -21:04:34.061 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -21:04:34.061 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -21:04:34.183 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Receive server push request, request = NotifySubscriberRequest, requestId = 10802 -21:04:34.184 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Ack server push request, request = NotifySubscriberRequest, requestId = 10802 -21:04:34.395 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Receive server push request, request = NotifySubscriberRequest, requestId = 10803 -21:04:34.396 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Ack server push request, request = NotifySubscriberRequest, requestId = 10803 -21:04:34.400 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Receive server push request, request = NotifySubscriberRequest, requestId = 10804 -21:04:34.404 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Ack server push request, request = NotifySubscriberRequest, requestId = 10804 -21:04:59.239 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Receive server push request, request = NotifySubscriberRequest, requestId = 10811 -21:04:59.240 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -21:04:59.240 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -21:04:59.241 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Ack server push request, request = NotifySubscriberRequest, requestId = 10811 -21:04:59.244 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Receive server push request, request = NotifySubscriberRequest, requestId = 10813 -21:04:59.244 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -21:04:59.244 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -21:04:59.245 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f02260e6-a334-4f81-9430-e800d0e1090c] Ack server push request, request = NotifySubscriberRequest, requestId = 10813 -21:05:00.769 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -21:05:00.769 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.0.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -21:05:00.831 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -21:05:00.832 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -21:05:00.832 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -21:05:00.832 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f02260e6-a334-4f81-9430-e800d0e1090c -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4e0eb7a9[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 9] -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4b80ffbc[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -21:05:00.833 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726491875062_39.144.43.42_63062 -21:05:00.841 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6727fcfa[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 59] -21:05:00.841 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f02260e6-a334-4f81-9430-e800d0e1090c -21:05:00.841 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -21:05:00.841 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -21:05:00.842 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +19:17:45.143 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +19:17:50.802 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 +19:17:51.545 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler +19:17:52.424 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... +19:17:52.425 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] +19:17:52.425 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null +19:17:52.425 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} +19:17:52.425 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null +19:17:52.425 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} +19:17:52.425 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null +19:17:52.426 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} +19:17:52.426 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} +19:17:52.426 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +19:17:52.426 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +19:17:52.429 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +19:17:52.429 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +19:17:52.430 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one +19:17:52.439 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 +19:17:52.439 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0 +19:17:52.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x00000277a332f3b0 +19:17:52.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x00000277a332f7d0 +19:17:52.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +19:17:52.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +19:17:52.440 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} +19:17:52.441 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +19:17:52.517 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726485473856_117.143.60.138_52349 +19:17:52.519 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +19:17:52.519 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Notify connected event to listeners. +19:17:52.520 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000277a3431da8 +19:17:52.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b702e8c8-9a9a-463c-9369-b19e1fe55564_config-0] Connected,notify listen context... +19:17:52.755 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.CacheData - [safeNotifyListener,474] - [fixed-one-47.116.173.119_8848] [notify-listener] task submitted to user executor, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP,tenant=one, md5=87c067411d89a53c94b05bdc910bd3c5, listener=com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource$1@60b57c2a +19:17:52.759 [sentinel-nacos-ds-update-thread-1] INFO c.a.n.c.c.i.CacheData - [run,451] - [fixed-one-47.116.173.119_8848] [notify-ok] dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP,tenant=one, md5=87c067411d89a53c94b05bdc910bd3c5, listener=com.alibaba.csp.sentinel.datasource.nacos.NacosDataSource$1@60b57c2a ,job run cost=3 millis. +19:17:53.131 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +19:17:53.132 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +19:17:53.133 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +19:17:53.140 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +19:17:53.143 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +19:17:53.143 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +19:17:53.245 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 3630edaf-671a-4fde-8863-67b553b61a39 +19:17:53.247 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->3630edaf-671a-4fde-8863-67b553b61a39 +19:17:53.247 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +19:17:53.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +19:17:53.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +19:17:53.249 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} +19:17:53.250 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +19:17:53.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726485474655_117.143.60.138_52360 +19:17:53.313 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +19:17:53.314 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000277a3431da8 +19:17:53.314 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Notify connected event to listeners. +19:17:53.314 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +19:17:53.315 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.82', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +19:17:53.347 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.82:8080 register finished +19:17:53.418 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +19:17:53.418 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +19:17:53.418 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +19:17:53.418 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +19:17:53.418 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +19:17:53.418 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +19:17:53.418 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +19:17:53.418 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +19:17:53.418 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +19:17:53.418 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +19:17:53.418 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +19:17:53.419 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +19:17:53.448 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.82#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.82","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:17:53.448 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.82#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.82","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:17:53.448 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.82#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.82","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:17:53.450 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.82#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.82","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:17:53.450 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.82#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.82","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:17:53.450 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.82#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.82","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:17:53.581 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. +19:17:53.658 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 11.729 seconds (process running for 12.609) +19:17:53.663 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one +19:17:53.664 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 +19:17:53.665 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP +19:17:53.665 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one +19:17:53.666 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 +19:17:53.667 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP +19:17:53.669 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one +19:17:53.670 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 +19:17:53.670 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP +19:17:53.940 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 9838 +19:17:53.941 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 9838 +19:17:54.032 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 9839 +19:17:54.033 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 9839 +19:17:54.041 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 9840 +19:17:54.047 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 9840 +19:18:23.654 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: +19:18:23.654 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +19:18:23.654 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +19:18:23.654 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: +19:18:23.654 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +19:18:23.654 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +19:18:23.655 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +19:18:23.656 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: +19:18:23.656 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +19:18:23.656 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +19:18:23.656 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: +19:18:23.656 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +19:18:23.671 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.82#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.82","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:18:23.671 [boundedElastic-2] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.82#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.82","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:18:23.672 [boundedElastic-2] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.82#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.82","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:18:23.672 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.82#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.82","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:18:23.673 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.82#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.82","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:18:23.674 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.82#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.82","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +19:18:24.243 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 9846 +19:18:24.243 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 9846 +19:18:24.247 [nacos-grpc-client-executor-47.116.173.119-62] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 9848 +19:18:24.248 [nacos-grpc-client-executor-47.116.173.119-62] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 9848 +19:18:24.251 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 9847 +19:18:24.251 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 9847 +20:10:54.188 [nacos-grpc-client-executor-47.116.173.119-1337] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 10204 +20:10:54.190 [nacos-grpc-client-executor-47.116.173.119-1337] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.82#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.82","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +20:10:54.190 [nacos-grpc-client-executor-47.116.173.119-1337] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +20:10:54.192 [nacos-grpc-client-executor-47.116.173.119-1337] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 10204 +20:10:54.221 [nacos-grpc-client-executor-47.116.173.119-1338] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 10206 +20:10:54.221 [nacos-grpc-client-executor-47.116.173.119-1338] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.82#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.82","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +20:10:54.222 [nacos-grpc-client-executor-47.116.173.119-1338] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +20:10:54.223 [nacos-grpc-client-executor-47.116.173.119-1338] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 10206 +20:10:54.420 [nacos-grpc-client-executor-47.116.173.119-1339] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 10208 +20:10:54.420 [nacos-grpc-client-executor-47.116.173.119-1339] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.82#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.82","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +20:10:54.421 [nacos-grpc-client-executor-47.116.173.119-1339] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] +20:10:54.422 [nacos-grpc-client-executor-47.116.173.119-1339] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 10208 +20:10:54.521 [nacos-grpc-client-executor-47.116.173.119-1340] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Receive server push request, request = NotifySubscriberRequest, requestId = 10210 +20:10:54.521 [nacos-grpc-client-executor-47.116.173.119-1340] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.82#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.82","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] +20:10:54.522 [nacos-grpc-client-executor-47.116.173.119-1340] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +20:10:54.524 [nacos-grpc-client-executor-47.116.173.119-1340] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [3630edaf-671a-4fde-8863-67b553b61a39] Ack server push request, request = NotifySubscriberRequest, requestId = 10210 +20:10:55.822 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:10:55.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.82', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:10:55.837 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:10:55.838 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:10:55.838 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->3630edaf-671a-4fde-8863-67b553b61a39 +20:10:55.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3c7cf14a[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1058] +20:10:55.840 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:10:55.840 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@cb1545f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:10:55.840 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726485474655_117.143.60.138_52360 +20:10:55.842 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@60f6a745[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 1374] +20:10:55.843 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->3630edaf-671a-4fde-8863-67b553b61a39 +20:10:55.843 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:10:55.843 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:10:55.843 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop diff --git a/logs/cloud-gateway/info.log b/logs/cloud-gateway/info.log index f661277..f77db25 100644 --- a/logs/cloud-gateway/info.log +++ b/logs/cloud-gateway/info.log @@ -1,5861 +1,2242 @@ -14:54:45.779 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:54:49.744 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -14:54:50.309 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -14:54:50.902 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -14:54:50.902 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -14:54:50.904 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -14:54:50.905 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -14:54:50.905 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -14:54:50.905 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -14:54:50.906 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -14:54:50.906 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -14:54:50.906 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -14:54:50.906 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -14:54:50.906 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -14:54:50.910 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -14:54:50.910 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -14:54:50.913 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -14:54:50.922 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -14:54:50.923 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of cad23743-7301-4e7b-aedd-d963e0c242e5_config-0 -14:54:50.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7eb48 -14:54:50.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7ef68 -14:54:50.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -14:54:50.924 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -14:54:50.925 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -14:54:50.925 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:54:51.143 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556093078_117.136.120.204_26262 -14:54:51.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:54:51.144 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Notify connected event to listeners. -14:54:51.144 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b6a20 -14:54:51.144 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [cad23743-7301-4e7b-aedd-d963e0c242e5_config-0] Connected,notify listen context... -14:54:51.747 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -14:54:51.747 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -14:54:51.748 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -14:54:51.755 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -14:54:51.760 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -14:54:51.761 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -14:54:51.924 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 0764e000-4108-4c06-8d27-43e0f48a4c51 -14:54:51.925 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->0764e000-4108-4c06-8d27-43e0f48a4c51 -14:54:51.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:54:51.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:54:51.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:54:51.926 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -14:54:51.927 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:54:52.257 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556094200_117.136.120.204_26263 -14:54:52.257 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Notify connected event to listeners. -14:54:52.257 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:54:52.258 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -14:54:52.258 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b6a20 -14:54:52.259 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -14:54:52.315 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.245.139:8080 register finished -14:54:52.427 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -14:54:52.427 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -14:54:52.428 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -14:54:52.428 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -14:54:52.430 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -14:54:52.430 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -14:54:52.431 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -14:54:52.432 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -14:54:52.432 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -14:54:52.432 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -14:54:52.432 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -14:54:52.432 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -14:54:52.489 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:54:52.489 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:54:52.489 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:54:52.490 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:54:52.490 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:54:52.491 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:54:52.616 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -14:54:52.685 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 10.995 seconds (process running for 11.627) -14:54:52.688 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -14:54:52.689 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -14:54:52.689 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -14:54:52.689 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -14:54:52.689 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -14:54:52.689 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -14:54:52.690 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -14:54:52.690 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -14:54:52.691 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -14:54:52.865 [nacos-grpc-client-executor-47.116.173.119-48] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Receive server push request, request = NotifySubscriberRequest, requestId = 11788 -14:54:52.866 [nacos-grpc-client-executor-47.116.173.119-48] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Ack server push request, request = NotifySubscriberRequest, requestId = 11788 -14:54:53.055 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Receive server push request, request = NotifySubscriberRequest, requestId = 11789 -14:54:53.056 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Ack server push request, request = NotifySubscriberRequest, requestId = 11789 -14:54:53.059 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Receive server push request, request = NotifySubscriberRequest, requestId = 11790 -14:54:53.064 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Ack server push request, request = NotifySubscriberRequest, requestId = 11790 -14:55:22.925 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -14:55:22.925 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -14:55:22.925 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -14:55:22.925 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -14:55:22.925 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -14:55:22.925 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -14:55:22.925 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -14:55:22.926 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -14:55:22.926 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -14:55:22.926 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -14:55:22.926 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -14:55:22.926 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -14:55:23.003 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:55:23.003 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:55:23.004 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -14:55:23.004 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -14:55:23.005 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -14:55:23.006 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:55:23.006 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:55:23.007 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:55:23.007 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -14:55:23.536 [nacos-grpc-client-executor-47.116.173.119-81] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Receive server push request, request = NotifySubscriberRequest, requestId = 11796 -14:55:23.537 [nacos-grpc-client-executor-47.116.173.119-81] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Ack server push request, request = NotifySubscriberRequest, requestId = 11796 -14:55:23.540 [nacos-grpc-client-executor-47.116.173.119-82] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Receive server push request, request = NotifySubscriberRequest, requestId = 11797 -14:55:23.540 [nacos-grpc-client-executor-47.116.173.119-82] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Ack server push request, request = NotifySubscriberRequest, requestId = 11797 -14:55:23.542 [nacos-grpc-client-executor-47.116.173.119-83] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Receive server push request, request = NotifySubscriberRequest, requestId = 11798 -14:55:23.542 [nacos-grpc-client-executor-47.116.173.119-83] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Ack server push request, request = NotifySubscriberRequest, requestId = 11798 -15:02:23.211 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3c25ab4e[ +08:14:54.634 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +08:15:00.409 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 +08:15:01.110 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler +08:15:01.980 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... +08:15:01.982 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] +08:15:01.983 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null +08:15:01.984 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} +08:15:01.984 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null +08:15:01.985 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} +08:15:01.985 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null +08:15:01.986 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} +08:15:01.987 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} +08:15:01.987 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +08:15:01.988 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +08:15:01.993 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +08:15:01.994 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +08:15:01.995 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-public-110.42.213.184_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+public +08:15:02.014 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-public-110.42.213.184_8848] [add-listener] ok, tenant=public, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 +08:15:02.015 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a5d73213-9448-45c4-8341-276b400835b1_config-0 +08:15:02.016 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000016c2832d588 +08:15:02.016 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000016c2832d9a8 +08:15:02.016 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +08:15:02.016 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +08:15:02.018 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +08:15:02.019 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:15:02.163 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050502457_117.143.60.138_63985 +08:15:02.163 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +08:15:02.163 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +08:15:02.164 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +08:15:02.164 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x0000016c2842e6d8 +08:15:02.178 [main] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:15:02.882 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +08:15:02.883 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +08:15:02.884 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +08:15:02.897 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +08:15:02.903 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +08:15:02.903 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +08:15:03.066 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 84dcd535-debf-4552-95b7-1e59ef93132c +08:15:03.069 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->84dcd535-debf-4552-95b7-1e59ef93132c +08:15:03.070 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +08:15:03.071 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +08:15:03.072 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +08:15:03.073 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +08:15:03.074 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:15:03.223 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050503514_117.143.60.138_63990 +08:15:03.223 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Notify connected event to listeners. +08:15:03.223 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +08:15:03.223 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +08:15:03.223 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x0000016c2842e6d8 +08:15:03.225 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.107', port=8084, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +08:15:03.263 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.107:8084 register finished +08:15:03.354 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +08:15:03.354 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +08:15:03.354 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +08:15:03.354 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +08:15:03.354 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +08:15:03.354 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +08:15:03.354 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +08:15:03.354 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +08:15:03.381 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:03.381 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:03.382 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:03.382 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:03.596 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. +08:15:03.659 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 13.063 seconds (process running for 13.816) +08:15:03.664 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway+DEFAULT_GROUP +08:15:03.665 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 +08:15:03.665 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP +08:15:03.666 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP +08:15:03.667 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 +08:15:03.667 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP +08:15:03.669 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP +08:15:03.670 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 +08:15:03.670 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP +08:15:03.801 [nacos-grpc-client-executor-110.42.213.184-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3458 +08:15:03.802 [nacos-grpc-client-executor-110.42.213.184-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3458 +08:15:03.986 [nacos-grpc-client-executor-110.42.213.184-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3459 +08:15:03.986 [nacos-grpc-client-executor-110.42.213.184-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3459 +08:15:04.103 [RMI TCP Connection(4)-192.168.136.1] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:15:18.460 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:15:33.652 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +08:15:33.652 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +08:15:33.652 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +08:15:33.652 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +08:15:33.653 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +08:15:33.653 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +08:15:33.654 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +08:15:33.654 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +08:15:33.664 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:33.664 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:33.665 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:33.666 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:34.227 [nacos-grpc-client-executor-110.42.213.184-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3464 +08:15:34.227 [nacos-grpc-client-executor-110.42.213.184-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3464 +08:15:34.230 [nacos-grpc-client-executor-110.42.213.184-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3465 +08:15:34.231 [nacos-grpc-client-executor-110.42.213.184-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3465 +08:15:35.203 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:15:55.215 [boundedElastic-2] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:16:03.687 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +08:16:03.687 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-carRail, group:DEFAULT_GROUP, clusters: +08:16:03.687 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +08:16:03.687 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +08:16:03.688 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +08:16:03.688 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-carRail, group:DEFAULT_GROUP, cluster: +08:16:03.688 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-carRail, group:DEFAULT_GROUP, clusters: +08:16:03.688 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-carRail, group:DEFAULT_GROUP, cluster: +08:16:03.699 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:16:03.699 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:16:03.701 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:16:03.701 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:16:04.297 [nacos-grpc-client-executor-110.42.213.184-76] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3469 +08:16:04.297 [nacos-grpc-client-executor-110.42.213.184-76] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3469 +08:16:04.300 [nacos-grpc-client-executor-110.42.213.184-77] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3468 +08:16:04.300 [nacos-grpc-client-executor-110.42.213.184-77] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3468 +08:16:15.210 [boundedElastic-6] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:16:35.210 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:16:55.223 [boundedElastic-7] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:17:15.210 [boundedElastic-7] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:17:35.213 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:17:55.200 [boundedElastic-7] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:18:15.210 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:18:35.201 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:18:55.211 [boundedElastic-12] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:19:15.203 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:19:35.227 [boundedElastic-12] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:19:55.204 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:20:15.208 [boundedElastic-8] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:20:35.206 [boundedElastic-15] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:20:55.212 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:21:15.201 [boundedElastic-17] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:21:35.218 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:21:55.208 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:22:15.208 [boundedElastic-18] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:22:35.211 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:22:55.213 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:23:15.211 [boundedElastic-19] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:23:35.211 [boundedElastic-20] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:23:55.206 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:24:15.221 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:24:35.216 [boundedElastic-18] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:24:55.214 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:25:15.208 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:25:35.203 [boundedElastic-14] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:25:55.256 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:26:15.208 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:26:35.212 [boundedElastic-18] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:26:55.574 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:27:15.224 [boundedElastic-20] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:27:35.219 [boundedElastic-3] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:27:55.207 [boundedElastic-26] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:28:15.228 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:28:35.203 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:28:55.205 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:29:15.202 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:29:35.200 [boundedElastic-18] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:29:55.208 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:30:15.197 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:30:35.221 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:30:55.212 [boundedElastic-28] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:31:15.200 [boundedElastic-28] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:31:35.217 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:31:55.213 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:32:15.210 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:32:35.326 [boundedElastic-29] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:32:55.223 [boundedElastic-25] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:33:15.202 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:33:35.210 [boundedElastic-29] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:33:55.225 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:34:15.259 [boundedElastic-32] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:34:35.212 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:34:55.220 [boundedElastic-26] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:35:15.206 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:35:35.203 [boundedElastic-26] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:35:55.222 [boundedElastic-29] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:36:15.201 [boundedElastic-33] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:36:35.207 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:36:55.209 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:37:15.202 [boundedElastic-29] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:37:35.208 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:37:55.209 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:38:15.211 [boundedElastic-24] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:38:35.346 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:38:55.316 [boundedElastic-34] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:39:15.202 [boundedElastic-31] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:39:35.197 [boundedElastic-24] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:39:55.206 [boundedElastic-24] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:40:15.198 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:40:35.212 [boundedElastic-33] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:40:55.209 [boundedElastic-33] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:41:15.220 [boundedElastic-37] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:41:35.227 [boundedElastic-36] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:41:55.246 [boundedElastic-24] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:42:15.198 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:42:35.215 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:42:55.212 [boundedElastic-40] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:43:15.203 [boundedElastic-40] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:43:35.222 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:43:55.201 [boundedElastic-39] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:44:15.233 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:44:35.214 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:44:55.208 [boundedElastic-33] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:45:15.226 [boundedElastic-33] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:45:35.207 [boundedElastic-43] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:45:55.203 [boundedElastic-44] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:46:15.197 [boundedElastic-44] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:46:35.212 [boundedElastic-39] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:46:55.209 [boundedElastic-31] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:47:15.226 [boundedElastic-43] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:47:35.218 [boundedElastic-36] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:47:55.198 [boundedElastic-33] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:48:15.250 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:48:35.208 [boundedElastic-41] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:48:55.231 [boundedElastic-47] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:49:15.210 [boundedElastic-43] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:49:35.223 [boundedElastic-46] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:49:55.263 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:50:15.307 [boundedElastic-31] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:50:35.210 [boundedElastic-39] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:50:55.223 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:51:15.206 [boundedElastic-36] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:51:35.267 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:51:55.356 [boundedElastic-31] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:52:15.207 [boundedElastic-43] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:52:35.260 [boundedElastic-39] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:52:55.392 [boundedElastic-39] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:53:15.242 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:53:35.205 [boundedElastic-51] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:53:55.252 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:54:15.210 [boundedElastic-43] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:54:35.398 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:54:55.211 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:55:15.214 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:55:35.211 [boundedElastic-39] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:55:55.237 [boundedElastic-51] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:56:15.350 [boundedElastic-54] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:56:35.253 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:56:55.229 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:57:15.370 [boundedElastic-36] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:57:35.337 [boundedElastic-51] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:57:55.418 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:58:15.488 [boundedElastic-54] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:58:35.861 [boundedElastic-55] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:58:55.934 [boundedElastic-53] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:59:04.980 [nacos-grpc-client-executor-110.42.213.184-1104] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3471 +08:59:04.982 [nacos-grpc-client-executor-110.42.213.184-1104] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:04.983 [nacos-grpc-client-executor-110.42.213.184-1104] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +08:59:04.984 [nacos-grpc-client-executor-110.42.213.184-1104] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3471 +08:59:05.810 [nacos-grpc-client-executor-110.42.213.184-1105] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3473 +08:59:05.810 [nacos-grpc-client-executor-110.42.213.184-1105] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:05.810 [nacos-grpc-client-executor-110.42.213.184-1105] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:05.811 [nacos-grpc-client-executor-110.42.213.184-1105] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3473 +08:59:14.818 [nacos-grpc-client-executor-110.42.213.184-1112] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3475 +08:59:14.818 [nacos-grpc-client-executor-110.42.213.184-1112] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3475 +08:59:17.730 [boundedElastic-51] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:59:35.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server healthy check fail, currentConnection = 1727050502457_117.143.60.138_63985 +08:59:35.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +08:59:35.005 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:35.629 [boundedElastic-53] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +08:59:38.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:39.662 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053178837_117.143.60.138_57838 +08:59:39.662 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050502457_117.143.60.138_63985 +08:59:39.662 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050502457_117.143.60.138_63985 +08:59:39.662 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify disconnected event to listeners +08:59:39.662 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] DisConnected,clear listen context... +08:59:39.662 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +08:59:39.663 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +08:59:41.598 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +08:59:41.600 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:44.715 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:47.722 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +08:59:47.749 [nacos-grpc-client-executor-110.42.213.184-1126] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3478 +08:59:47.750 [nacos-grpc-client-executor-110.42.213.184-1126] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:47.750 [nacos-grpc-client-executor-110.42.213.184-1126] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +08:59:47.751 [nacos-grpc-client-executor-110.42.213.184-1126] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3478 +08:59:47.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:59:49.673 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053188587_117.143.60.138_57870 +08:59:49.673 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053178837_117.143.60.138_57838 +08:59:49.673 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053178837_117.143.60.138_57838 +08:59:49.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify disconnected event to listeners +08:59:49.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] DisConnected,clear listen context... +08:59:49.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +08:59:49.673 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +08:59:53.580 [nacos-grpc-client-executor-110.42.213.184-1127] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3480 +08:59:53.580 [nacos-grpc-client-executor-110.42.213.184-1127] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:53.580 [nacos-grpc-client-executor-110.42.213.184-1127] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:53.581 [nacos-grpc-client-executor-110.42.213.184-1127] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3480 +08:59:56.169 [boundedElastic-53] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:00:02.053 [nacos-grpc-client-executor-110.42.213.184-1130] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3482 +09:00:02.053 [nacos-grpc-client-executor-110.42.213.184-1130] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3482 +09:00:11.223 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:00:19.186 [nacos-grpc-client-executor-110.42.213.184-1139] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3488 +09:00:19.186 [nacos-grpc-client-executor-110.42.213.184-1139] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3488 +09:00:19.791 [nacos-grpc-client-executor-110.42.213.184-1140] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3490 +09:00:19.791 [nacos-grpc-client-executor-110.42.213.184-1140] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3490 +09:00:34.779 [nacos-grpc-client-executor-110.42.213.184-1143] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3495 +09:00:34.780 [nacos-grpc-client-executor-110.42.213.184-1143] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:00:34.780 [nacos-grpc-client-executor-110.42.213.184-1143] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:00:34.781 [nacos-grpc-client-executor-110.42.213.184-1143] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3495 +09:00:36.982 [nacos-grpc-client-executor-110.42.213.184-1144] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3496 +09:00:36.983 [nacos-grpc-client-executor-110.42.213.184-1144] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:00:36.983 [nacos-grpc-client-executor-110.42.213.184-1144] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:00:36.984 [nacos-grpc-client-executor-110.42.213.184-1144] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3496 +09:00:38.681 [nacos-grpc-client-executor-110.42.213.184-1151] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3499 +09:00:38.682 [nacos-grpc-client-executor-110.42.213.184-1151] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:00:38.682 [nacos-grpc-client-executor-110.42.213.184-1151] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +09:00:38.682 [nacos-grpc-client-executor-110.42.213.184-1151] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3499 +09:00:44.386 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server healthy check fail, currentConnection = 1727053188587_117.143.60.138_57870 +09:00:44.386 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:44.386 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:46.636 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server healthy check fail, currentConnection = 1727050494257_117.143.60.138_63971 +09:00:46.636 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:46.636 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:47.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:49.743 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:50.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:50.718 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:52.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:52.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:53.726 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:54.036 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:55.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:56.267 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:57.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:57.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:57.730 [nacos-grpc-client-executor-110.42.213.184-1154] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3504 +09:00:57.731 [nacos-grpc-client-executor-110.42.213.184-1154] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:00:57.731 [nacos-grpc-client-executor-110.42.213.184-1154] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:00:57.732 [nacos-grpc-client-executor-110.42.213.184-1154] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3504 +09:00:59.282 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:00:59.687 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:00.388 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053260331_117.143.60.138_58066 +09:01:00.388 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050494257_117.143.60.138_63971 +09:01:00.388 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050494257_117.143.60.138_63971 +09:01:00.388 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:01:00.389 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:01:00.389 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:01:00.389 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:01:00.468 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:00.982 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:01.764 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:01:01.764 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:03.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053262638_117.143.60.138_58078 +09:01:03.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053188587_117.143.60.138_57870 +09:01:03.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053188587_117.143.60.138_57870 +09:01:03.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify disconnected event to listeners +09:01:03.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] DisConnected,clear listen context... +09:01:03.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +09:01:03.118 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +09:01:04.880 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:05.935 [nacos-grpc-client-executor-110.42.213.184-1156] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3507 +09:01:05.936 [nacos-grpc-client-executor-110.42.213.184-1156] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:05.936 [nacos-grpc-client-executor-110.42.213.184-1156] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:05.937 [nacos-grpc-client-executor-110.42.213.184-1156] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3507 +09:01:06.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053266906_117.143.60.138_58097 +09:01:06.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053260331_117.143.60.138_58066 +09:01:06.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053260331_117.143.60.138_58066 +09:01:06.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:01:06.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:01:06.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:01:06.818 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:01:09.034 [nacos-grpc-client-executor-110.42.213.184-1164] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3509 +09:01:09.035 [nacos-grpc-client-executor-110.42.213.184-1164] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:09.035 [nacos-grpc-client-executor-110.42.213.184-1164] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] +09:01:09.035 [nacos-grpc-client-executor-110.42.213.184-1164] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3509 +09:01:11.875 [nacos-grpc-client-executor-110.42.213.184-1165] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3510 +09:01:11.875 [nacos-grpc-client-executor-110.42.213.184-1165] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:11.875 [nacos-grpc-client-executor-110.42.213.184-1165] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:11.876 [nacos-grpc-client-executor-110.42.213.184-1165] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3510 +09:01:18.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:01:18.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:21.465 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:24.316 [nacos-grpc-client-executor-110.42.213.184-1168] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3511 +09:01:24.317 [nacos-grpc-client-executor-110.42.213.184-1168] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:24.317 [nacos-grpc-client-executor-110.42.213.184-1168] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:01:24.317 [nacos-grpc-client-executor-110.42.213.184-1168] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3511 +09:01:24.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:24.680 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:26.755 [nacos-grpc-client-executor-110.42.213.184-1169] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3512 +09:01:26.755 [nacos-grpc-client-executor-110.42.213.184-1169] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:26.755 [nacos-grpc-client-executor-110.42.213.184-1169] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:26.756 [nacos-grpc-client-executor-110.42.213.184-1169] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3512 +09:01:27.687 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:28.001 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:31.010 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:31.417 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:34.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:34.932 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:35.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053295602_117.143.60.138_58218 +09:01:35.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053262638_117.143.60.138_58078 +09:01:35.993 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053262638_117.143.60.138_58078 +09:01:35.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify disconnected event to listeners +09:01:35.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] DisConnected,clear listen context... +09:01:35.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +09:01:35.993 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +09:01:39.087 [nacos-grpc-client-executor-110.42.213.184-1178] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3515 +09:01:39.088 [nacos-grpc-client-executor-110.42.213.184-1178] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:39.088 [nacos-grpc-client-executor-110.42.213.184-1178] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +09:01:39.089 [nacos-grpc-client-executor-110.42.213.184-1178] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3515 +09:01:42.110 [nacos-grpc-client-executor-110.42.213.184-1179] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3516 +09:01:42.111 [nacos-grpc-client-executor-110.42.213.184-1179] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:42.111 [nacos-grpc-client-executor-110.42.213.184-1179] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:42.112 [nacos-grpc-client-executor-110.42.213.184-1179] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3516 +09:01:52.388 [nacos-grpc-client-executor-110.42.213.184-1181] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3517 +09:01:52.388 [nacos-grpc-client-executor-110.42.213.184-1181] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:52.388 [nacos-grpc-client-executor-110.42.213.184-1181] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:52.389 [nacos-grpc-client-executor-110.42.213.184-1181] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3517 +09:01:53.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server healthy check fail, currentConnection = 1727053266906_117.143.60.138_58097 +09:01:53.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:01:53.621 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:53.786 [nacos-grpc-client-executor-110.42.213.184-1182] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3519 +09:01:53.786 [nacos-grpc-client-executor-110.42.213.184-1182] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:53.787 [nacos-grpc-client-executor-110.42.213.184-1182] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:01:53.787 [nacos-grpc-client-executor-110.42.213.184-1182] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3519 +09:01:55.793 [nacos-grpc-client-executor-110.42.213.184-1183] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3521 +09:01:55.793 [nacos-grpc-client-executor-110.42.213.184-1183] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:55.794 [nacos-grpc-client-executor-110.42.213.184-1183] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:55.794 [nacos-grpc-client-executor-110.42.213.184-1183] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3521 +09:01:56.738 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:57.235 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053317391_117.143.60.138_58325 +09:01:57.235 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053266906_117.143.60.138_58097 +09:01:57.235 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053266906_117.143.60.138_58097 +09:01:57.235 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:01:57.235 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:01:57.235 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:01:57.235 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:02:01.193 [boundedElastic-55] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:02:05.641 [boundedElastic-57] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:02:10.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server healthy check fail, currentConnection = 1727053295602_117.143.60.138_58218 +09:02:10.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:10.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:11.618 [nacos-grpc-client-executor-110.42.213.184-1193] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3531 +09:02:11.618 [nacos-grpc-client-executor-110.42.213.184-1193] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:11.618 [nacos-grpc-client-executor-110.42.213.184-1193] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:02:11.619 [nacos-grpc-client-executor-110.42.213.184-1193] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3531 +09:02:12.384 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:12.384 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:13.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:14.646 [boundedElastic-55] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:02:14.741 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053334532_117.143.60.138_58420 +09:02:14.741 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053295602_117.143.60.138_58218 +09:02:14.741 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053295602_117.143.60.138_58218 +09:02:14.741 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify disconnected event to listeners +09:02:14.741 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] DisConnected,clear listen context... +09:02:14.741 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +09:02:14.741 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +09:02:15.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:18.508 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:18.713 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:20.254 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:02:21.726 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:21.735 [nacos-grpc-client-executor-110.42.213.184-1196] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3537 +09:02:21.735 [nacos-grpc-client-executor-110.42.213.184-1196] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:21.735 [nacos-grpc-client-executor-110.42.213.184-1196] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] +09:02:21.736 [nacos-grpc-client-executor-110.42.213.184-1196] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3537 +09:02:22.041 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:24.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053344775_117.143.60.138_58456 +09:02:24.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053317391_117.143.60.138_58325 +09:02:24.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053317391_117.143.60.138_58325 +09:02:24.581 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:02:24.581 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:02:24.581 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:02:24.581 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:02:27.064 [boundedElastic-47] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:02:27.388 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:27.388 [nacos-grpc-client-executor-110.42.213.184-1198] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3538 +09:02:27.388 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:27.388 [nacos-grpc-client-executor-110.42.213.184-1198] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:27.388 [nacos-grpc-client-executor-110.42.213.184-1198] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:27.390 [nacos-grpc-client-executor-110.42.213.184-1198] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3538 +09:02:30.513 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:30.531 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:02:33.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:33.729 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:36.738 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:37.052 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:37.118 [nacos-grpc-client-executor-110.42.213.184-1200] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3540 +09:02:37.118 [nacos-grpc-client-executor-110.42.213.184-1200] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:37.118 [nacos-grpc-client-executor-110.42.213.184-1200] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:02:37.119 [nacos-grpc-client-executor-110.42.213.184-1200] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3540 +09:02:38.149 [nacos-grpc-client-executor-110.42.213.184-1201] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3541 +09:02:38.149 [nacos-grpc-client-executor-110.42.213.184-1201] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:38.149 [nacos-grpc-client-executor-110.42.213.184-1201] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:38.150 [nacos-grpc-client-executor-110.42.213.184-1201] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3541 +09:02:40.059 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:40.463 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:40.736 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:02:43.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:43.992 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:47.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:47.613 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:48.790 [nacos-grpc-client-executor-110.42.213.184-1209] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3542 +09:02:48.790 [nacos-grpc-client-executor-110.42.213.184-1209] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:48.790 [nacos-grpc-client-executor-110.42.213.184-1209] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:02:48.791 [nacos-grpc-client-executor-110.42.213.184-1209] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3542 +09:02:49.923 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053370087_117.143.60.138_58552 +09:02:49.923 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053344775_117.143.60.138_58456 +09:02:49.923 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053344775_117.143.60.138_58456 +09:02:49.923 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:02:49.923 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:02:49.923 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:02:49.923 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:02:50.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:02:52.869 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:52.869 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:54.014 [nacos-grpc-client-executor-110.42.213.184-1210] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3545 +09:02:54.014 [nacos-grpc-client-executor-110.42.213.184-1210] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3545 +09:02:55.988 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:57.755 [nacos-grpc-client-executor-110.42.213.184-1211] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3546 +09:02:57.756 [nacos-grpc-client-executor-110.42.213.184-1211] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3546 +09:02:57.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053377101_117.143.60.138_58564 +09:02:57.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053334532_117.143.60.138_58420 +09:02:57.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053334532_117.143.60.138_58420 +09:02:57.790 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify disconnected event to listeners +09:02:57.790 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] DisConnected,clear listen context... +09:02:57.791 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +09:02:57.791 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +09:02:58.618 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:03:01.758 [nacos-grpc-client-executor-110.42.213.184-1212] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3553 +09:03:01.758 [nacos-grpc-client-executor-110.42.213.184-1212] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:01.758 [nacos-grpc-client-executor-110.42.213.184-1212] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +09:03:01.759 [nacos-grpc-client-executor-110.42.213.184-1212] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3553 +09:03:18.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server healthy check fail, currentConnection = 1727053370087_117.143.60.138_58552 +09:03:18.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:03:18.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:21.645 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:24.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:24.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:27.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:28.169 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:30.374 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053408832_117.143.60.138_51316 +09:03:30.374 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053370087_117.143.60.138_58552 +09:03:30.374 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053370087_117.143.60.138_58552 +09:03:30.374 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:03:30.374 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:03:30.374 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:03:30.374 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:03:35.499 [boundedElastic-57] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:03:44.626 [nacos-grpc-client-executor-110.42.213.184-1230] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3564 +09:03:44.626 [nacos-grpc-client-executor-110.42.213.184-1230] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:44.626 [nacos-grpc-client-executor-110.42.213.184-1230] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:03:44.627 [nacos-grpc-client-executor-110.42.213.184-1230] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3564 +09:03:47.094 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:03:47.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:03:47.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:48.183 [nacos-grpc-client-executor-110.42.213.184-1232] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3566 +09:03:48.184 [nacos-grpc-client-executor-110.42.213.184-1232] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:48.184 [nacos-grpc-client-executor-110.42.213.184-1232] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:48.184 [nacos-grpc-client-executor-110.42.213.184-1232] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3566 +09:03:49.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053428283_117.143.60.138_51377 +09:03:49.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053377101_117.143.60.138_58564 +09:03:49.622 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053377101_117.143.60.138_58564 +09:03:49.622 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify disconnected event to listeners +09:03:49.622 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] DisConnected,clear listen context... +09:03:49.623 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +09:03:49.623 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +09:03:50.844 [nacos-grpc-client-executor-110.42.213.184-1233] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3568 +09:03:50.846 [nacos-grpc-client-executor-110.42.213.184-1233] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:50.846 [nacos-grpc-client-executor-110.42.213.184-1233] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:50.847 [nacos-grpc-client-executor-110.42.213.184-1233] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3568 +09:03:58.635 [nacos-grpc-client-executor-110.42.213.184-1235] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3570 +09:03:58.635 [nacos-grpc-client-executor-110.42.213.184-1235] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:58.635 [nacos-grpc-client-executor-110.42.213.184-1235] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:03:58.636 [nacos-grpc-client-executor-110.42.213.184-1235] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3570 +09:04:01.341 [nacos-grpc-client-executor-110.42.213.184-1236] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3572 +09:04:01.341 [nacos-grpc-client-executor-110.42.213.184-1236] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:01.341 [nacos-grpc-client-executor-110.42.213.184-1236] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:01.342 [nacos-grpc-client-executor-110.42.213.184-1236] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3572 +09:04:08.660 [nacos-grpc-client-executor-110.42.213.184-1244] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3575 +09:04:08.661 [nacos-grpc-client-executor-110.42.213.184-1244] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:08.661 [nacos-grpc-client-executor-110.42.213.184-1244] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:04:08.662 [nacos-grpc-client-executor-110.42.213.184-1244] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3575 +09:04:09.657 [boundedElastic-61] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:04:10.986 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server healthy check fail, currentConnection = 1727053408832_117.143.60.138_51316 +09:04:10.986 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:04:10.986 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:12.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053452400_117.143.60.138_51445 +09:04:12.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053408832_117.143.60.138_51316 +09:04:12.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053408832_117.143.60.138_51316 +09:04:12.265 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:04:12.265 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:04:12.265 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:04:12.265 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:04:15.158 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:04:15.948 [nacos-grpc-client-executor-110.42.213.184-1245] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3577 +09:04:15.949 [nacos-grpc-client-executor-110.42.213.184-1245] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:15.949 [nacos-grpc-client-executor-110.42.213.184-1245] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:15.949 [nacos-grpc-client-executor-110.42.213.184-1245] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3577 +09:04:17.571 [nacos-grpc-client-executor-110.42.213.184-1246] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3579 +09:04:17.571 [nacos-grpc-client-executor-110.42.213.184-1246] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3579 +09:04:29.331 [boundedElastic-62] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:04:37.863 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server healthy check fail, currentConnection = 1727053428283_117.143.60.138_51377 +09:04:37.863 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:04:37.863 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:38.869 [nacos-grpc-client-executor-110.42.213.184-1256] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3583 +09:04:38.869 [nacos-grpc-client-executor-110.42.213.184-1256] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:38.869 [nacos-grpc-client-executor-110.42.213.184-1256] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:04:38.870 [nacos-grpc-client-executor-110.42.213.184-1256] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3583 +09:04:40.979 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:43.994 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:44.196 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:44.305 [nacos-grpc-client-executor-110.42.213.184-1257] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3585 +09:04:44.305 [nacos-grpc-client-executor-110.42.213.184-1257] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:44.306 [nacos-grpc-client-executor-110.42.213.184-1257] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:44.306 [nacos-grpc-client-executor-110.42.213.184-1257] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3585 +09:04:47.044 [boundedElastic-63] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:04:47.207 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:47.520 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:50.223 [nacos-grpc-client-executor-110.42.213.184-1259] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3587 +09:04:50.224 [nacos-grpc-client-executor-110.42.213.184-1259] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:50.224 [nacos-grpc-client-executor-110.42.213.184-1259] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:04:50.224 [nacos-grpc-client-executor-110.42.213.184-1259] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3587 +09:04:50.521 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:50.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:51.206 [nacos-grpc-client-executor-110.42.213.184-1260] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3589 +09:04:51.206 [nacos-grpc-client-executor-110.42.213.184-1260] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:51.206 [nacos-grpc-client-executor-110.42.213.184-1260] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:51.207 [nacos-grpc-client-executor-110.42.213.184-1260] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3589 +09:04:53.952 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:54.455 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:57.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:58.059 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:00.159 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053499777_117.143.60.138_51593 +09:05:00.159 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053428283_117.143.60.138_51377 +09:05:00.159 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053428283_117.143.60.138_51377 +09:05:00.159 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify disconnected event to listeners +09:05:00.160 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] DisConnected,clear listen context... +09:05:00.160 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Notify connected event to listeners. +09:05:00.160 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Connected,notify listen context... +09:05:07.733 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:05:29.648 [boundedElastic-57] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:05:31.900 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5d73213-9448-45c4-8341-276b400835b1_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:05:44.440 [nacos-grpc-client-executor-110.42.213.184-1283] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3592 +09:05:44.441 [nacos-grpc-client-executor-110.42.213.184-1283] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3592 +09:06:08.942 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server healthy check fail, currentConnection = 1727053452400_117.143.60.138_51445 +09:06:08.942 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:06:08.942 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:12.058 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:15.064 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:06:15.266 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:18.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:06:18.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:21.586 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:06:21.994 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:25.007 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:06:25.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:28.538 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:06:29.148 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:06:30.749 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053590396_117.143.60.138_64153 +09:06:30.749 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053452400_117.143.60.138_51445 +09:06:30.749 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053452400_117.143.60.138_51445 +09:06:30.749 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:06:30.749 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:06:30.749 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:06:30.749 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:06:33.553 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:06:36.834 [nacos-grpc-client-executor-110.42.213.184-1300] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3595 +09:06:36.834 [nacos-grpc-client-executor-110.42.213.184-1300] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:36.835 [nacos-grpc-client-executor-110.42.213.184-1300] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:06:36.836 [nacos-grpc-client-executor-110.42.213.184-1300] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3595 +09:06:39.084 [nacos-grpc-client-executor-110.42.213.184-1310] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3597 +09:06:39.084 [nacos-grpc-client-executor-110.42.213.184-1310] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:39.084 [nacos-grpc-client-executor-110.42.213.184-1310] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:39.086 [nacos-grpc-client-executor-110.42.213.184-1310] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3597 +09:06:39.701 [boundedElastic-62] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:06:50.555 [nacos-grpc-client-executor-110.42.213.184-1313] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3599 +09:06:50.555 [nacos-grpc-client-executor-110.42.213.184-1313] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:50.555 [nacos-grpc-client-executor-110.42.213.184-1313] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:06:50.556 [nacos-grpc-client-executor-110.42.213.184-1313] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3599 +09:06:52.624 [nacos-grpc-client-executor-110.42.213.184-1314] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3601 +09:06:52.624 [nacos-grpc-client-executor-110.42.213.184-1314] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:52.624 [nacos-grpc-client-executor-110.42.213.184-1314] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:52.625 [nacos-grpc-client-executor-110.42.213.184-1314] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3601 +09:06:56.787 [boundedElastic-47] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:07:00.586 [nacos-grpc-client-executor-110.42.213.184-1316] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3603 +09:07:00.587 [nacos-grpc-client-executor-110.42.213.184-1316] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:00.587 [nacos-grpc-client-executor-110.42.213.184-1316] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:07:00.588 [nacos-grpc-client-executor-110.42.213.184-1316] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3603 +09:07:01.921 [nacos-grpc-client-executor-110.42.213.184-1317] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3605 +09:07:01.921 [nacos-grpc-client-executor-110.42.213.184-1317] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:01.921 [nacos-grpc-client-executor-110.42.213.184-1317] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:01.922 [nacos-grpc-client-executor-110.42.213.184-1317] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3605 +09:07:16.872 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:07:37.588 [boundedElastic-64] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:07:48.769 [nacos-grpc-client-executor-110.42.213.184-1338] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3607 +09:07:48.769 [nacos-grpc-client-executor-110.42.213.184-1338] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:48.769 [nacos-grpc-client-executor-110.42.213.184-1338] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] +09:07:48.770 [nacos-grpc-client-executor-110.42.213.184-1338] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3607 +09:07:49.867 [nacos-grpc-client-executor-110.42.213.184-1339] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3608 +09:07:49.867 [nacos-grpc-client-executor-110.42.213.184-1339] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:49.868 [nacos-grpc-client-executor-110.42.213.184-1339] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:49.868 [nacos-grpc-client-executor-110.42.213.184-1339] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3608 +09:07:51.166 [nacos-grpc-client-executor-110.42.213.184-1340] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3610 +09:07:51.167 [nacos-grpc-client-executor-110.42.213.184-1340] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:51.167 [nacos-grpc-client-executor-110.42.213.184-1340] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:07:51.167 [nacos-grpc-client-executor-110.42.213.184-1340] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3610 +09:07:52.298 [nacos-grpc-client-executor-110.42.213.184-1341] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3614 +09:07:52.299 [nacos-grpc-client-executor-110.42.213.184-1341] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:52.299 [nacos-grpc-client-executor-110.42.213.184-1341] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:52.299 [nacos-grpc-client-executor-110.42.213.184-1341] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3614 +09:07:57.929 [nacos-grpc-client-executor-110.42.213.184-1342] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3618 +09:07:57.929 [nacos-grpc-client-executor-110.42.213.184-1342] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3618 +09:08:11.245 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:08:22.615 [nacos-grpc-client-executor-110.42.213.184-1354] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3620 +09:08:22.616 [nacos-grpc-client-executor-110.42.213.184-1354] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:08:22.616 [nacos-grpc-client-executor-110.42.213.184-1354] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:08:22.617 [nacos-grpc-client-executor-110.42.213.184-1354] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3620 +09:08:24.452 [nacos-grpc-client-executor-110.42.213.184-1355] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3622 +09:08:24.453 [nacos-grpc-client-executor-110.42.213.184-1355] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:08:24.453 [nacos-grpc-client-executor-110.42.213.184-1355] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:08:24.454 [nacos-grpc-client-executor-110.42.213.184-1355] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3622 +09:08:32.293 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@c0b8bf5[ 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@6f34ec5d, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1549/0x00000008015de000@1a10b3c, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} + 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@3d894276, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1565/0x0000016c2889dab0@298ef516, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} 查询参数={} 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:23 GMT", connection:"close"] - 耗时/时间=1800MS-2024-09-17 15:02:21-2024-09-17 15:02:23 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", istoken:"false", content-type:"application/json;charset=UTF-8", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", repeatsubmit:"false", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", Transfer-Encoding:"chunked"] + 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM","expires_in":720}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:08:32 GMT", connection:"close"] + 耗时/时间=5163MS-2024-09-23 09:08:27-2024-09-23 09:08:32 ]] -15:02:23.815 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3d1ffe4a[ +09:08:35.723 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@54b94db2[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:23 GMT", connection:"close"] - 耗时/时间=345MS-2024-09-17 15:02:23-2024-09-17 15:02:23 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:08:35 GMT", connection:"close"] + 耗时/时间=825MS-2024-09-23 09:08:34-2024-09-23 09:08:35 ]] -15:02:24.370 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5e1c3cfb[ +09:08:36.854 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5f400a56[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:23 GMT", connection:"close"] - 耗时/时间=175MS-2024-09-17 15:02:24-2024-09-17 15:02:24 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:08:36 GMT", connection:"close"] + 耗时/时间=933MS-2024-09-23 09:08:35-2024-09-23 09:08:36 ]] -15:02:29.820 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@498b7f56[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:29 GMT", connection:"close"] - 耗时/时间=1062MS-2024-09-17 15:02:28-2024-09-17 15:02:29 -]] -15:02:32.008 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@63f10b0d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:32 GMT", connection:"close"] - 耗时/时间=242MS-2024-09-17 15:02:31-2024-09-17 15:02:32 -]] -15:02:33.460 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@a3a7756[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:33 GMT", connection:"close"] - 耗时/时间=256MS-2024-09-17 15:02:33-2024-09-17 15:02:33 -]] -15:02:37.861 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@11fcabdb[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:37 GMT", connection:"close"] - 耗时/时间=227MS-2024-09-17 15:02:37-2024-09-17 15:02:37 -]] -15:02:38.152 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2934232f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:37 GMT", connection:"close"] - 耗时/时间=198MS-2024-09-17 15:02:37-2024-09-17 15:02:38 -]] -15:02:38.682 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@50f384e3[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:37 GMT", connection:"close"] - 耗时/时间=166MS-2024-09-17 15:02:38-2024-09-17 15:02:38 -]] -15:02:39.316 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@74e0bbe2[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:39 GMT", connection:"close"] - 耗时/时间=242MS-2024-09-17 15:02:39-2024-09-17 15:02:39 -]] -15:02:41.376 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3a654ed[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:41 GMT", connection:"close"] - 耗时/时间=302MS-2024-09-17 15:02:41-2024-09-17 15:02:41 -]] -15:02:41.721 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@290f2c61[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:41 GMT", connection:"close"] - 耗时/时间=262MS-2024-09-17 15:02:41-2024-09-17 15:02:41 -]] -15:02:44.524 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3e035ab8[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:44 GMT", connection:"close"] - 耗时/时间=320MS-2024-09-17 15:02:44-2024-09-17 15:02:44 -]] -15:02:44.848 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@335ea23[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:44 GMT", connection:"close"] - 耗时/时间=159MS-2024-09-17 15:02:44-2024-09-17 15:02:44 -]] -15:02:45.449 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5d7898b1[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:44 GMT", connection:"close"] - 耗时/时间=219MS-2024-09-17 15:02:45-2024-09-17 15:02:45 -]] -15:02:46.014 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@15dfa44d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:45 GMT", connection:"close"] - 耗时/时间=141MS-2024-09-17 15:02:45-2024-09-17 15:02:45 -]] -15:02:46.579 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1051beb6[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:02:45 GMT", connection:"close"] - 耗时/时间=188MS-2024-09-17 15:02:46-2024-09-17 15:02:46 -]] -15:03:37.009 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@30b5f783[ +09:08:39.040 [boundedElastic-66] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:08:59.033 [boundedElastic-66] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:09:05.967 [boundedElastic-56] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: +09:09:05.967 [boundedElastic-56] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: +09:09:05.976 [boundedElastic-56] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:09:05.976 [boundedElastic-56] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:09:06.641 [nacos-grpc-client-executor-110.42.213.184-1385] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3624 +09:09:06.641 [nacos-grpc-client-executor-110.42.213.184-1385] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3624 +09:09:18.626 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1f257648[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:37 GMT", connection:"close"] - 耗时/时间=177MS-2024-09-17 15:03:36-2024-09-17 15:03:37 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/cars", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:09:18 GMT", connection:"close"] + 耗时/时间=992MS-2024-09-23 09:09:17-2024-09-23 09:09:18 ]] -15:03:37.232 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@f1d33b9[ +09:09:19.040 [boundedElastic-60] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:09:20.984 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@25910ab5[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:37 GMT", connection:"close"] - 耗时/时间=163MS-2024-09-17 15:03:37-2024-09-17 15:03:37 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/cars", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:09:20 GMT", connection:"close"] + 耗时/时间=2155MS-2024-09-23 09:09:18-2024-09-23 09:09:20 ]] -15:03:37.876 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7307196f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:37 GMT", connection:"close"] - 耗时/时间=239MS-2024-09-17 15:03:37-2024-09-17 15:03:37 -]] -15:03:39.009 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5e95544b[ +09:09:39.409 [boundedElastic-66] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:09:42.380 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@23559320[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:39 GMT", connection:"close"] - 耗时/时间=99MS-2024-09-17 15:03:38-2024-09-17 15:03:39 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:09:42 GMT", connection:"close"] + 耗时/时间=2294MS-2024-09-23 09:09:40-2024-09-23 09:09:42 ]] -15:03:39.184 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@218cd1cb[ +09:09:47.820 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1cc5adec[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:39 GMT", connection:"close"] - 耗时/时间=133MS-2024-09-17 15:03:39-2024-09-17 15:03:39 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:09:47 GMT", connection:"close"] + 耗时/时间=1343MS-2024-09-23 09:09:46-2024-09-23 09:09:47 ]] -15:03:39.900 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@42ef5913[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:39 GMT", connection:"close"] - 耗时/时间=134MS-2024-09-17 15:03:39-2024-09-17 15:03:39 -]] -15:03:40.923 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6394e9fa[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:40 GMT", connection:"close"] - 耗时/时间=81MS-2024-09-17 15:03:40-2024-09-17 15:03:40 -]] -15:03:41.170 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3f740fd9[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:40 GMT", connection:"close"] - 耗时/时间=330MS-2024-09-17 15:03:40-2024-09-17 15:03:41 -]] -15:03:49.539 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@f981e92[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Required request parameter 'dbName' for method parameter type String is not present","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:03:49 GMT", connection:"close"] - 耗时/时间=58MS-2024-09-17 15:03:49-2024-09-17 15:03:49 -]] -15:04:36.571 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2dc85c3f[ +09:09:53.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Server healthy check fail, currentConnection = 1727053590396_117.143.60.138_64153 +09:09:53.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:09:53.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:09:54.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053794699_117.143.60.138_49524 +09:09:54.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053590396_117.143.60.138_64153 +09:09:54.671 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053590396_117.143.60.138_64153 +09:09:54.671 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify disconnected event to listeners +09:09:54.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] DisConnected,clear listen context... +09:09:54.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Notify connected event to listeners. +09:09:54.672 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [64ce4e17-d491-4804-81a0-c506db857fed_config-0] Connected,notify listen context... +09:10:01.116 [boundedElastic-62] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:10:11.811 [nacos-grpc-client-executor-110.42.213.184-1418] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3626 +09:10:11.811 [nacos-grpc-client-executor-110.42.213.184-1418] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:11.812 [nacos-grpc-client-executor-110.42.213.184-1418] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:10:11.812 [nacos-grpc-client-executor-110.42.213.184-1418] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3626 +09:10:11.906 [nacos-grpc-client-executor-110.42.213.184-1419] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3628 +09:10:11.906 [nacos-grpc-client-executor-110.42.213.184-1419] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:11.906 [nacos-grpc-client-executor-110.42.213.184-1419] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:10:11.907 [nacos-grpc-client-executor-110.42.213.184-1419] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3628 +09:10:12.007 [nacos-grpc-client-executor-110.42.213.184-1420] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3630 +09:10:12.007 [nacos-grpc-client-executor-110.42.213.184-1420] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:12.007 [nacos-grpc-client-executor-110.42.213.184-1420] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:10:12.008 [nacos-grpc-client-executor-110.42.213.184-1420] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3630 +09:10:12.278 [nacos-grpc-client-executor-110.42.213.184-1421] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Receive server push request, request = NotifySubscriberRequest, requestId = 3632 +09:10:12.278 [nacos-grpc-client-executor-110.42.213.184-1421] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:12.278 [nacos-grpc-client-executor-110.42.213.184-1421] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +09:10:12.279 [nacos-grpc-client-executor-110.42.213.184-1421] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [84dcd535-debf-4552-95b7-1e59ef93132c] Ack server push request, request = NotifySubscriberRequest, requestId = 3632 +09:10:13.275 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +09:10:13.276 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.107', port=8084, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +09:10:13.289 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +09:10:13.291 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +09:10:13.291 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +09:10:13.292 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +09:10:13.292 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +09:10:13.292 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +09:10:13.292 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +09:10:13.292 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +09:10:13.292 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +09:10:13.293 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +09:10:13.293 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +09:10:13.293 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +09:10:13.293 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->84dcd535-debf-4552-95b7-1e59ef93132c +09:10:13.293 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1c7d7410[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1100] +09:10:13.293 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +09:10:13.294 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@79341825[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +09:10:13.294 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050503514_117.143.60.138_63990 +09:10:13.294 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@383be53b[Running, pool size = 12, active threads = 0, queued tasks = 0, completed tasks = 1449] +09:10:13.294 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->84dcd535-debf-4552-95b7-1e59ef93132c +09:10:13.295 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +09:10:13.295 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +09:10:13.295 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +09:10:33.440 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +09:10:38.823 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 +09:10:39.705 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler +09:10:40.543 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... +09:10:40.543 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] +09:10:40.543 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null +09:10:40.543 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} +09:10:40.543 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null +09:10:40.543 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} +09:10:40.544 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null +09:10:40.544 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} +09:10:40.544 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} +09:10:40.544 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:10:40.544 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:10:40.546 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +09:10:40.546 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +09:10:40.548 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-public-110.42.213.184_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+public +09:10:40.556 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-public-110.42.213.184_8848] [add-listener] ok, tenant=public, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 +09:10:40.556 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b501d965-7c60-482b-8be4-43cae90629b8_config-0 +09:10:40.557 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x000001cdd632b950 +09:10:40.557 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x000001cdd632bd70 +09:10:40.557 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +09:10:40.557 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +09:10:40.558 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:10:40.558 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:10:41.876 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053841274_117.143.60.138_55809 +09:10:41.876 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Notify connected event to listeners. +09:10:41.876 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:10:41.878 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Connected,notify listen context... +09:10:41.878 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b501d965-7c60-482b-8be4-43cae90629b8_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x000001cdd642d008 +09:10:42.078 [main] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:10:42.546 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +09:10:42.548 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +09:10:42.549 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +09:10:42.555 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +09:10:42.559 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:10:42.559 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:10:42.775 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4b855008-dc41-4f05-a10e-205163655ac7 +09:10:42.777 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->4b855008-dc41-4f05-a10e-205163655ac7 +09:10:42.778 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +09:10:42.778 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +09:10:42.778 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +09:10:42.779 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:10:42.779 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:10:43.314 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053843461_117.143.60.138_55821 +09:10:43.314 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:10:43.314 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Notify connected event to listeners. +09:10:43.315 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:10:43.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x000001cdd642d008 +09:10:43.316 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.107', port=8084, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +09:10:43.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:10:43.614 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:10:45.509 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Success to connect a server [110.42.213.184:8848], connectionId = 1727053844375_117.143.60.138_55831 +09:10:45.510 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053843461_117.143.60.138_55821 +09:10:45.511 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053843461_117.143.60.138_55821 +09:10:45.520 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Notify disconnected event to listeners +09:10:45.522 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4b855008-dc41-4f05-a10e-205163655ac7] Notify connected event to listeners. +09:10:45.523 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:10:45.789 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway +09:10:46.234 [main] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +09:10:46.235 [main] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +09:10:46.235 [main] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +09:10:46.236 [main] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +09:10:46.236 [main] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +09:10:46.236 [main] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +09:10:46.237 [main] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +09:10:46.237 [main] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +09:10:46.238 [main] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +09:10:46.238 [main] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +09:10:46.238 [main] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +09:10:46.239 [main] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->4b855008-dc41-4f05-a10e-205163655ac7 +09:10:46.239 [main] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@34a06981[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1] +09:10:46.240 [main] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +09:10:46.241 [main] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@458500d1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +09:10:46.241 [main] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053844375_117.143.60.138_55831 +09:10:46.242 [main] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@59cbeaee[Running, pool size = 16, active threads = 0, queued tasks = 0, completed tasks = 16] +09:10:46.243 [main] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->4b855008-dc41-4f05-a10e-205163655ac7 +09:10:46.244 [main] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +09:10:46.245 [main] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +09:10:46.245 [main] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +09:13:11.381 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +09:13:14.419 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 +09:13:14.887 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler +09:13:15.432 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... +09:13:15.433 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] +09:13:15.433 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null +09:13:15.433 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} +09:13:15.433 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null +09:13:15.433 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} +09:13:15.433 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null +09:13:15.433 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} +09:13:15.433 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} +09:13:15.434 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:13:15.434 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:13:15.435 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +09:13:15.436 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +09:13:15.436 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-public-110.42.213.184_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+public +09:13:15.442 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-public-110.42.213.184_8848] [add-listener] ok, tenant=public, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 +09:13:15.443 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0 +09:13:15.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x000001a14432bf78 +09:13:15.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x000001a14432c398 +09:13:15.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +09:13:15.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +09:13:15.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:13:15.444 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:13:15.982 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053996089_117.143.60.138_56074 +09:13:15.982 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:13:15.982 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x000001a14442e6d8 +09:13:15.982 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Notify connected event to listeners. +09:13:15.982 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [e8be4d04-94c1-4578-b22d-eff019c4ab24_config-0] Connected,notify listen context... +09:13:16.087 [main] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:13:16.400 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +09:13:16.410 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +09:13:16.411 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +09:13:16.417 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +09:13:16.421 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:13:16.421 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:13:16.551 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f1582c59-a762-4a66-86c6-098a03320e5d +09:13:16.552 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->f1582c59-a762-4a66-86c6-098a03320e5d +09:13:16.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +09:13:16.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +09:13:16.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +09:13:16.554 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:13:16.554 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:13:16.729 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053997066_117.143.60.138_56077 +09:13:16.729 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:13:16.729 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x000001a14442e6d8 +09:13:16.729 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Notify connected event to listeners. +09:13:16.729 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:13:16.730 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.107', port=8084, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +09:13:16.748 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.107:8084 register finished +09:13:16.798 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-carRail, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-carRail, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +09:13:16.798 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +09:13:16.798 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-carRail, group:DEFAULT_GROUP, cluster: +09:13:16.798 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +09:13:16.798 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +09:13:16.798 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +09:13:16.798 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +09:13:16.798 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +09:13:16.798 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-carRail, group:DEFAULT_GROUP, cluster: +09:13:16.799 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +09:13:16.799 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +09:13:16.799 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +09:13:16.799 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +09:13:16.799 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +09:13:16.826 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.826 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.826 [boundedElastic-13] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.826 [boundedElastic-14] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.826 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.827 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.827 [boundedElastic-13] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.829 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.829 [boundedElastic-14] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.829 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.829 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.830 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] +09:13:16.906 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. +09:13:16.953 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 8.457 seconds (process running for 8.987) +09:13:16.957 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway+DEFAULT_GROUP +09:13:16.958 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 +09:13:16.958 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP +09:13:16.958 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP +09:13:16.958 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 +09:13:16.958 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP +09:13:16.959 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP +09:13:16.959 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 +09:13:16.959 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP +09:13:17.427 [nacos-grpc-client-executor-110.42.213.184-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Receive server push request, request = NotifySubscriberRequest, requestId = 3646 +09:13:17.429 [nacos-grpc-client-executor-110.42.213.184-10] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Ack server push request, request = NotifySubscriberRequest, requestId = 3646 +09:13:17.430 [nacos-grpc-client-executor-110.42.213.184-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Receive server push request, request = NotifySubscriberRequest, requestId = 3647 +09:13:17.431 [nacos-grpc-client-executor-110.42.213.184-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Ack server push request, request = NotifySubscriberRequest, requestId = 3647 +09:13:17.433 [nacos-grpc-client-executor-110.42.213.184-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Receive server push request, request = NotifySubscriberRequest, requestId = 3648 +09:13:17.434 [nacos-grpc-client-executor-110.42.213.184-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Ack server push request, request = NotifySubscriberRequest, requestId = 3648 +09:13:17.439 [nacos-grpc-client-executor-110.42.213.184-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Receive server push request, request = NotifySubscriberRequest, requestId = 3649 +09:13:17.440 [nacos-grpc-client-executor-110.42.213.184-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Ack server push request, request = NotifySubscriberRequest, requestId = 3649 +09:13:17.443 [nacos-grpc-client-executor-110.42.213.184-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Receive server push request, request = NotifySubscriberRequest, requestId = 3650 +09:13:17.444 [nacos-grpc-client-executor-110.42.213.184-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Ack server push request, request = NotifySubscriberRequest, requestId = 3650 +09:13:17.446 [nacos-grpc-client-executor-110.42.213.184-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Receive server push request, request = NotifySubscriberRequest, requestId = 3651 +09:13:17.448 [nacos-grpc-client-executor-110.42.213.184-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Ack server push request, request = NotifySubscriberRequest, requestId = 3651 +09:13:17.496 [RMI TCP Connection(1)-192.168.136.1] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:13:24.013 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1c25fd20[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:04:36 GMT", connection:"close"] - 耗时/时间=130MS-2024-09-17 15:04:36-2024-09-17 15:04:36 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/index", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:13:23 GMT", connection:"close"] + 耗时/时间=610MS-2024-09-23 09:13:23-2024-09-23 09:13:23 ]] -15:04:38.122 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5ded335d[ +09:13:24.103 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@73fd63a[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:04:38 GMT", connection:"close"] - 耗时/时间=92MS-2024-09-17 15:04:38-2024-09-17 15:04:38 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/index", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:13:23 GMT", connection:"close"] + 耗时/时间=57MS-2024-09-23 09:13:24-2024-09-23 09:13:24 ]] -15:04:39.228 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@10015602[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:04:39 GMT", connection:"close"] - 耗时/时间=182MS-2024-09-17 15:04:39-2024-09-17 15:04:39 -]] -15:04:45.474 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@72006ae7[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:04:45 GMT", connection:"close"] - 耗时/时间=44MS-2024-09-17 15:04:45-2024-09-17 15:04:45 -]] -15:04:45.642 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7a47e796[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false,"query":false,"increment":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"crud":false,"sub":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:04:45 GMT", connection:"close"] - 耗时/时间=210MS-2024-09-17 15:04:45-2024-09-17 15:04:45 -]] -15:06:07.792 [nacos-grpc-client-executor-47.116.173.119-340] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Receive server push request, request = NotifySubscriberRequest, requestId = 11830 -15:06:07.792 [nacos-grpc-client-executor-47.116.173.119-340] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:06:07.792 [nacos-grpc-client-executor-47.116.173.119-340] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:06:07.794 [nacos-grpc-client-executor-47.116.173.119-340] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Ack server push request, request = NotifySubscriberRequest, requestId = 11830 -15:06:09.185 [nacos-grpc-client-executor-47.116.173.119-341] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Receive server push request, request = NotifySubscriberRequest, requestId = 11832 -15:06:09.186 [nacos-grpc-client-executor-47.116.173.119-341] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:06:09.186 [nacos-grpc-client-executor-47.116.173.119-341] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:06:09.188 [nacos-grpc-client-executor-47.116.173.119-341] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0764e000-4108-4c06-8d27-43e0f48a4c51] Ack server push request, request = NotifySubscriberRequest, requestId = 11832 -15:06:11.681 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:06:11.681 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:06:11.729 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->0764e000-4108-4c06-8d27-43e0f48a4c51 -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7d08a9d6[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 226] -15:06:11.730 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:06:11.731 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1fd96a21[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:06:11.731 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556094200_117.136.120.204_26263 -15:06:11.733 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6281a182[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 343] -15:06:11.733 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->0764e000-4108-4c06-8d27-43e0f48a4c51 -15:06:11.733 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:06:11.733 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:06:11.734 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:08:10.592 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:08:14.321 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -15:08:14.848 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -15:08:15.382 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -15:08:15.382 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -15:08:15.382 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -15:08:15.382 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -15:08:15.382 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -15:08:15.382 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -15:08:15.382 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -15:08:15.383 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -15:08:15.383 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -15:08:15.383 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:08:15.383 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:08:15.385 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:08:15.386 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:08:15.387 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -15:08:15.393 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -15:08:15.393 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0 -15:08:15.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7edc0 -15:08:15.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7f1e0 -15:08:15.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:08:15.394 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:08:15.394 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:08:15.394 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:08:15.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556897612_117.136.120.204_26275 -15:08:15.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:15.659 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Notify connected event to listeners. -15:08:15.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8d88 -15:08:15.659 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [aee22dc8-1fc4-4001-b59a-796c77096cd9_config-0] Connected,notify listen context... -15:08:16.296 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:08:16.297 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:08:16.297 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:08:16.303 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:08:16.307 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:08:16.307 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:08:16.463 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of dec7762f-a3c3-4f2c-b40e-058df2730b0a -15:08:16.466 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->dec7762f-a3c3-4f2c-b40e-058df2730b0a -15:08:16.466 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:08:16.466 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:08:16.467 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:08:16.467 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:08:16.468 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:08:16.830 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556898658_117.136.120.204_26276 -15:08:16.830 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:16.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Notify connected event to listeners. -15:08:16.830 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8d88 -15:08:16.830 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:08:16.831 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:08:16.886 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.245.139:8080 register finished -15:08:17.007 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:08:17.007 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:08:17.007 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:08:17.008 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:08:17.008 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:08:17.008 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:08:17.009 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:08:17.009 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:08:17.010 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:08:17.011 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:08:17.011 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:08:17.012 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:08:17.091 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:17.091 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:17.091 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:17.092 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:17.092 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:17.092 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:17.255 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -15:08:17.412 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 10.538 seconds (process running for 11.14) -15:08:17.416 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -15:08:17.417 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -15:08:17.417 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -15:08:17.418 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -15:08:17.418 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -15:08:17.418 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -15:08:17.419 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -15:08:17.420 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:08:17.420 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -15:08:17.452 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 11837 -15:08:17.452 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 11837 -15:08:17.642 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 11838 -15:08:17.643 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 11838 -15:08:17.649 [nacos-grpc-client-executor-47.116.173.119-48] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 11839 -15:08:17.652 [nacos-grpc-client-executor-47.116.173.119-48] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 11839 -15:08:47.482 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:08:47.482 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:08:47.482 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:08:47.482 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:08:47.482 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:08:47.483 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:08:47.483 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:08:47.483 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:08:47.483 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:08:47.483 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:08:47.484 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:08:47.484 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:08:47.591 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:08:47.591 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:08:47.592 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:47.592 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:47.592 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:47.593 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:47.593 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:47.593 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:08:48.163 [nacos-grpc-client-executor-47.116.173.119-69] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 11845 -15:08:48.165 [nacos-grpc-client-executor-47.116.173.119-69] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 11845 -15:08:48.167 [nacos-grpc-client-executor-47.116.173.119-70] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 11847 -15:08:48.168 [nacos-grpc-client-executor-47.116.173.119-70] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 11847 -15:08:48.169 [nacos-grpc-client-executor-47.116.173.119-71] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 11846 -15:08:48.170 [nacos-grpc-client-executor-47.116.173.119-71] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 11846 -15:10:09.818 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1db406ab[ +09:13:32.892 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: +09:13:32.892 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: +09:13:32.906 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] +09:13:32.906 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] +09:13:33.492 [nacos-grpc-client-executor-110.42.213.184-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Receive server push request, request = NotifySubscriberRequest, requestId = 3652 +09:13:33.492 [nacos-grpc-client-executor-110.42.213.184-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Ack server push request, request = NotifySubscriberRequest, requestId = 3652 +09:13:34.519 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:13:43.601 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: +09:13:43.602 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: +09:13:43.616 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:13:43.616 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:13:44.145 [nacos-grpc-client-executor-110.42.213.184-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Receive server push request, request = NotifySubscriberRequest, requestId = 3653 +09:13:44.145 [nacos-grpc-client-executor-110.42.213.184-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f1582c59-a762-4a66-86c6-098a03320e5d] Ack server push request, request = NotifySubscriberRequest, requestId = 3653 +09:13:45.048 [boundedElastic-7] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:13:54.396 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7f615047[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:10:09 GMT", connection:"close"] - 耗时/时间=724MS-2024-09-17 15:10:09-2024-09-17 15:10:09 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:13:54 GMT", connection:"close"] + 耗时/时间=628MS-2024-09-23 09:13:53-2024-09-23 09:13:54 ]] -15:10:09.818 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3abd218b[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:10:09 GMT", connection:"close"] - 耗时/时间=700MS-2024-09-17 15:10:09-2024-09-17 15:10:09 -]] -15:10:10.037 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@365c8ae7[ +09:13:54.482 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@c24f77f[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:10:09 GMT", connection:"close"] - 耗时/时间=168MS-2024-09-17 15:10:09-2024-09-17 15:10:10 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8084", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:13:54 GMT", connection:"close"] + 耗时/时间=52MS-2024-09-23 09:13:54-2024-09-23 09:13:54 ]] -15:10:11.630 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1f73891d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:10:11 GMT", connection:"close"] - 耗时/时间=1036MS-2024-09-17 15:10:10-2024-09-17 15:10:11 -]] -15:10:23.972 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@fbd392a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:10:23 GMT", connection:"close"] - 耗时/时间=108MS-2024-09-17 15:10:23-2024-09-17 15:10:23 -]] -15:10:24.198 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@703a8b28[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:10:23 GMT", connection:"close"] - 耗时/时间=333MS-2024-09-17 15:10:23-2024-09-17 15:10:24 -]] -15:11:06.278 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@878ece3[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:11:06 GMT", connection:"close"] - 耗时/时间=42MS-2024-09-17 15:11:06-2024-09-17 15:11:06 -]] -15:11:06.452 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@46337d59[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:11:06 GMT", connection:"close"] - 耗时/时间=216MS-2024-09-17 15:11:06-2024-09-17 15:11:06 -]] -15:11:22.337 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1c2cb61e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Required request parameter 'dbName' for method parameter type String is not present","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:11:22 GMT", connection:"close"] - 耗时/时间=63MS-2024-09-17 15:11:22-2024-09-17 15:11:22 -]] -15:12:49.368 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@36dca6c5[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"5630c6a0-a7bd-4a5e-92b7-aad8368e2850", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Required request parameter 'dbName' for method parameter type String is not present","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:12:49 GMT", connection:"close"] - 耗时/时间=47MS-2024-09-17 15:12:49-2024-09-17 15:12:49 -]] -15:30:58.953 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5a5854da[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-DELETE}:/auth/logout ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@138fa63, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1549/0x00000008015db9f8@487a8070, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=R+1M9ozQR5LoOzKyobNLp3mTo7XPpHZYPoFQZ1G2rzeikzyPyOhGclQF3dSJdqShQ8Yiy2GFTAE+Q/s7EYj19w==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU2MzBjNmEwLWE3YmQtNGE1ZS05MmI3LWFhZDgzNjhlMjg1MCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTY1NDMsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.K2S8vBOEx91j5qHVpBzUvcnay848jYm2uoPCIvuHNLI", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:30:58 GMT", connection:"close"] - 耗时/时间=895MS-2024-09-17 15:30:58-2024-09-17 15:30:58 -]] -15:31:01.829 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6a33babf[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@45592068, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1549/0x00000008015db9f8@102418b7, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:31:01 GMT", connection:"close"] - 耗时/时间=799MS-2024-09-17 15:31:01-2024-09-17 15:31:01 -]] -15:31:02.075 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2244b71a[ +09:14:05.135 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:14:25.043 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:14:35.489 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +09:14:35.489 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.107', port=8084, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +09:14:35.503 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +09:14:35.504 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +09:14:35.504 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +09:14:35.504 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +09:14:35.504 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +09:14:35.504 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f1582c59-a762-4a66-86c6-098a03320e5d +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@56b44aa3[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 26] +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@127b29fe[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +09:14:35.505 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053997066_117.143.60.138_56077 +09:14:35.507 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4424fbd0[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 143] +09:14:35.507 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f1582c59-a762-4a66-86c6-098a03320e5d +09:14:35.507 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +09:14:35.508 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +09:14:35.508 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +09:15:03.319 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +09:15:06.456 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 +09:15:06.973 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler +09:15:07.529 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... +09:15:07.530 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] +09:15:07.530 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null +09:15:07.530 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} +09:15:07.530 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null +09:15:07.530 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} +09:15:07.530 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null +09:15:07.530 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} +09:15:07.531 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} +09:15:07.531 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:15:07.531 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:15:07.532 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +09:15:07.533 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +09:15:07.533 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-public-110.42.213.184_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+public +09:15:07.539 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-public-110.42.213.184_8848] [add-listener] ok, tenant=public, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 +09:15:07.539 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d497366d-d1d0-442c-ae41-4f542b303d10_config-0 +09:15:07.539 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x000001f2c930b950 +09:15:07.539 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x000001f2c930bd70 +09:15:07.539 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 +09:15:07.539 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 +09:15:07.540 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:15:07.540 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:15:07.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727054108043_117.143.60.138_56217 +09:15:07.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:15:07.677 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Notify connected event to listeners. +09:15:07.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x000001f2c944d208 +09:15:07.677 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Connected,notify listen context... +09:15:07.689 [main] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:15:07.993 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +09:15:07.993 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +09:15:07.994 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +09:15:08.005 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +09:15:08.008 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:15:08.009 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:15:08.313 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 8a275618-f82d-414d-ae23-7ee8b1ccfecb +09:15:08.315 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->8a275618-f82d-414d-ae23-7ee8b1ccfecb +09:15:08.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +09:15:08.315 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +09:15:08.316 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +09:15:08.317 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:15:08.318 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:15:08.565 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727054108911_117.143.60.138_56218 +09:15:08.565 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:15:08.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Notify connected event to listeners. +09:15:08.565 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x000001f2c944d208 +09:15:08.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:15:08.566 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.107', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +09:15:08.589 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.107:8080 register finished +09:15:08.642 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +09:15:08.642 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +09:15:08.642 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +09:15:08.642 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +09:15:08.642 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-carRail, group:DEFAULT_GROUP, clusters: +09:15:08.642 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-carRail, group:DEFAULT_GROUP, clusters: +09:15:08.642 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +09:15:08.642 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +09:15:08.642 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +09:15:08.642 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +09:15:08.642 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +09:15:08.643 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +09:15:08.643 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-carRail, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +09:15:08.643 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-carRail, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +09:15:08.643 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +09:15:08.643 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +09:15:08.667 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] +09:15:08.667 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.667 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.668 [boundedElastic-11] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.668 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.668 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.668 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.668 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] +09:15:08.670 [boundedElastic-11] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.670 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.670 [boundedElastic-13] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.672 [boundedElastic-13] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:08.746 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. +09:15:08.795 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 7.744 seconds (process running for 8.25) +09:15:08.799 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway+DEFAULT_GROUP +09:15:08.800 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 +09:15:08.800 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP +09:15:08.800 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP +09:15:08.800 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 +09:15:08.800 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP +09:15:08.801 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP +09:15:08.802 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 +09:15:08.802 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP +09:15:09.147 [RMI TCP Connection(2)-192.168.136.1] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:15:09.163 [nacos-grpc-client-executor-110.42.213.184-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3656 +09:15:09.165 [nacos-grpc-client-executor-110.42.213.184-9] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:09.166 [nacos-grpc-client-executor-110.42.213.184-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:15:09.167 [nacos-grpc-client-executor-110.42.213.184-9] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3656 +09:15:09.242 [nacos-grpc-client-executor-110.42.213.184-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3658 +09:15:09.243 [nacos-grpc-client-executor-110.42.213.184-12] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3658 +09:15:09.245 [nacos-grpc-client-executor-110.42.213.184-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3657 +09:15:09.246 [nacos-grpc-client-executor-110.42.213.184-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3657 +09:15:09.249 [nacos-grpc-client-executor-110.42.213.184-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3659 +09:15:09.251 [nacos-grpc-client-executor-110.42.213.184-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3659 +09:15:09.253 [nacos-grpc-client-executor-110.42.213.184-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3660 +09:15:09.254 [nacos-grpc-client-executor-110.42.213.184-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3660 +09:15:09.257 [nacos-grpc-client-executor-110.42.213.184-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3661 +09:15:09.258 [nacos-grpc-client-executor-110.42.213.184-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3661 +09:15:34.773 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:15:45.050 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:15:55.528 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@385da090[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:31:01 GMT", connection:"close"] - 耗时/时间=183MS-2024-09-17 15:31:01-2024-09-17 15:31:02 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:15:55 GMT", connection:"close"] + 耗时/时间=255MS-2024-09-23 09:15:55-2024-09-23 09:15:55 ]] -15:31:02.620 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2d3ec4a5[ +09:15:55.619 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4c845d90[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:31:02 GMT", connection:"close"] - 耗时/时间=200MS-2024-09-17 15:31:02-2024-09-17 15:31:02 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:15:55 GMT", connection:"close"] + 耗时/时间=61MS-2024-09-23 09:15:55-2024-09-23 09:15:55 ]] -15:31:06.774 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7ee86e94[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:31:06 GMT", connection:"close"] - 耗时/时间=230MS-2024-09-17 15:31:06-2024-09-17 15:31:06 -]] -15:31:07.720 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@24d68710[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:31:06 GMT", connection:"close"] - 耗时/时间=66MS-2024-09-17 15:31:07-2024-09-17 15:31:07 -]] -15:31:08.004 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6c0d9c2f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"superColumn":false,"edit":false,"usableColumn":false,"increment":false,"capJavaField":null,"query":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:31:08 GMT", connection:"close"] - 耗时/时间=350MS-2024-09-17 15:31:07-2024-09-17 15:31:08 -]] -15:32:43.967 [nacos-grpc-client-executor-47.116.173.119-628] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12037 -15:32:43.968 [nacos-grpc-client-executor-47.116.173.119-628] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:32:43.968 [nacos-grpc-client-executor-47.116.173.119-628] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:32:43.969 [nacos-grpc-client-executor-47.116.173.119-628] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12037 -15:32:43.972 [nacos-grpc-client-executor-47.116.173.119-629] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12039 -15:32:43.972 [nacos-grpc-client-executor-47.116.173.119-629] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:32:43.972 [nacos-grpc-client-executor-47.116.173.119-629] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:32:43.973 [nacos-grpc-client-executor-47.116.173.119-629] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12039 -15:32:44.175 [nacos-grpc-client-executor-47.116.173.119-630] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12041 -15:32:44.176 [nacos-grpc-client-executor-47.116.173.119-630] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:32:44.176 [nacos-grpc-client-executor-47.116.173.119-630] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -15:32:44.177 [nacos-grpc-client-executor-47.116.173.119-630] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12041 -15:32:44.178 [nacos-grpc-client-executor-47.116.173.119-631] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Receive server push request, request = NotifySubscriberRequest, requestId = 12042 -15:32:44.178 [nacos-grpc-client-executor-47.116.173.119-631] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:32:44.178 [nacos-grpc-client-executor-47.116.173.119-631] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -15:32:44.179 [nacos-grpc-client-executor-47.116.173.119-631] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [dec7762f-a3c3-4f2c-b40e-058df2730b0a] Ack server push request, request = NotifySubscriberRequest, requestId = 12042 -15:32:45.515 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:32:45.516 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:32:45.609 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:32:45.610 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:32:45.610 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:32:45.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:32:45.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:32:45.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:32:45.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:32:45.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:32:45.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:32:45.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:32:45.611 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:32:45.612 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:32:45.612 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->dec7762f-a3c3-4f2c-b40e-058df2730b0a -15:32:45.612 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@69abe7f1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 488] -15:32:45.612 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:32:45.612 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@66e6719c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:32:45.613 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556898658_117.136.120.204_26276 -15:32:45.616 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7b5c65cd[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 633] -15:32:45.616 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->dec7762f-a3c3-4f2c-b40e-058df2730b0a -15:32:45.617 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:32:45.617 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:32:45.617 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:33:14.616 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:33:17.347 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -15:33:17.690 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -15:33:18.045 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -15:33:18.045 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -15:33:18.046 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -15:33:18.046 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -15:33:18.046 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -15:33:18.046 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -15:33:18.046 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -15:33:18.046 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -15:33:18.046 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -15:33:18.046 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:33:18.047 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:33:18.048 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:33:18.048 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:33:18.049 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -15:33:18.055 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -15:33:18.056 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0 -15:33:18.056 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7e690 -15:33:18.056 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7eab0 -15:33:18.056 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:33:18.056 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:33:18.057 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:33:18.057 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:33:18.215 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558400187_117.136.120.204_26611 -15:33:18.215 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:33:18.215 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8228 -15:33:18.215 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Notify connected event to listeners. -15:33:18.216 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f41daf0a-96bf-4a1a-811b-80da4f1b59ff_config-0] Connected,notify listen context... -15:33:18.564 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:33:18.564 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:33:18.564 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:33:18.568 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:33:18.571 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:33:18.571 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:33:18.895 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d1760b7b-e93e-428c-b368-e4d2ac4ba91e -15:33:18.896 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->d1760b7b-e93e-428c-b368-e4d2ac4ba91e -15:33:18.897 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:33:18.897 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:33:18.897 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:33:18.897 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:33:18.898 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:33:19.087 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558401066_117.136.120.204_26612 -15:33:19.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:33:19.088 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Notify connected event to listeners. -15:33:19.088 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8228 -15:33:19.088 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:33:19.089 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:33:19.130 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.245.139:8080 register finished -15:33:19.208 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:33:19.208 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:33:19.208 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:33:19.208 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:33:19.208 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:33:19.208 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:33:19.208 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:33:19.208 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:33:19.208 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:33:19.208 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:33:19.208 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:33:19.208 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:33:19.208 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:33:19.209 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:33:19.209 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:33:19.209 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:33:19.210 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:33:19.211 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:33:19.211 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:33:19.210 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:33:19.212 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:33:19.212 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:33:19.212 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:33:19.212 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:33:19.284 [boundedElastic-12] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.284 [boundedElastic-14] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.284 [boundedElastic-11] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.285 [boundedElastic-10] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:33:19.286 [boundedElastic-12] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.286 [boundedElastic-14] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.286 [boundedElastic-11] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.287 [boundedElastic-10] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:33:19.290 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.290 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.291 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.295 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.295 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.297 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.376 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -15:33:19.473 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 7.917 seconds (process running for 8.602) -15:33:19.476 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -15:33:19.476 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -15:33:19.476 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -15:33:19.476 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -15:33:19.476 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -15:33:19.476 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -15:33:19.477 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -15:33:19.477 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:33:19.477 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -15:33:19.720 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Receive server push request, request = NotifySubscriberRequest, requestId = 12057 -15:33:19.721 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.722 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:33:19.723 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Ack server push request, request = NotifySubscriberRequest, requestId = 12057 -15:33:19.821 [nacos-grpc-client-executor-47.116.173.119-58] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Receive server push request, request = NotifySubscriberRequest, requestId = 12058 -15:33:19.822 [nacos-grpc-client-executor-47.116.173.119-58] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Ack server push request, request = NotifySubscriberRequest, requestId = 12058 -15:33:19.824 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Receive server push request, request = NotifySubscriberRequest, requestId = 12059 -15:33:19.824 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Ack server push request, request = NotifySubscriberRequest, requestId = 12059 -15:33:19.828 [nacos-grpc-client-executor-47.116.173.119-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Receive server push request, request = NotifySubscriberRequest, requestId = 12060 -15:33:19.830 [nacos-grpc-client-executor-47.116.173.119-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Ack server push request, request = NotifySubscriberRequest, requestId = 12060 -15:33:19.832 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Receive server push request, request = NotifySubscriberRequest, requestId = 12061 -15:33:19.832 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Ack server push request, request = NotifySubscriberRequest, requestId = 12061 -15:33:19.835 [nacos-grpc-client-executor-47.116.173.119-62] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Receive server push request, request = NotifySubscriberRequest, requestId = 12062 -15:33:19.835 [nacos-grpc-client-executor-47.116.173.119-62] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Ack server push request, request = NotifySubscriberRequest, requestId = 12062 -15:33:43.567 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7c5202c[ +09:16:05.055 [boundedElastic-6] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:16:25.066 [boundedElastic-6] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:16:45.068 [boundedElastic-13] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:17:05.042 [boundedElastic-10] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:17:25.042 [boundedElastic-10] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:17:45.064 [boundedElastic-6] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:18:05.063 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:18:25.056 [boundedElastic-12] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:18:45.046 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:19:05.042 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:19:16.439 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3a640e8f[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:33:43 GMT", connection:"close"] - 耗时/时间=538MS-2024-09-17 15:33:43-2024-09-17 15:33:43 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:19:16 GMT", connection:"close"] + 耗时/时间=63MS-2024-09-23 09:19:16-2024-09-23 09:19:16 ]] -15:33:43.709 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@63ea8004[ +09:19:16.602 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6fd158a2[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:33:43 GMT", connection:"close"] - 耗时/时间=106MS-2024-09-17 15:33:43-2024-09-17 15:33:43 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:19:16 GMT", connection:"close"] + 耗时/时间=71MS-2024-09-23 09:19:16-2024-09-23 09:19:16 ]] -15:33:44.981 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1dd7aa77[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:33:44 GMT", connection:"close"] - 耗时/时间=893MS-2024-09-17 15:33:44-2024-09-17 15:33:44 -]] -15:33:46.531 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@35fb802c[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:33:46 GMT", connection:"close"] - 耗时/时间=128MS-2024-09-17 15:33:46-2024-09-17 15:33:46 -]] -15:33:46.648 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@18653302[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:33:46 GMT", connection:"close"] - 耗时/时间=247MS-2024-09-17 15:33:46-2024-09-17 15:33:46 -]] -15:33:59.575 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3fc46395[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:33:59 GMT", connection:"close"] - 耗时/时间=468MS-2024-09-17 15:33:59-2024-09-17 15:33:59 -]] -15:34:13.694 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6fef590a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[2], pageSize=[10], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:05","updateBy":null,"updateTime":"2024-09-14 14:12:44","remark":null,"tableId":null,"dbName":null,"tableName":"sys_logininfor","tableComment":"系统访问记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:05","updateBy":null,"updateTime":"2024-09-14 14:12:44","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:04","updateBy":null,"updateTime":"2024-09-14 12:20:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_dict_type","tableComment":"字典类型表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:04","updateBy":null,"updateTime":"2024-09-14 12:20:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:02","updateBy":null,"updateTime":"2024-09-14 12:20:02","remark":null,"tableId":null,"dbName":null,"tableName":"sys_dict_data","tableComment":"字典数据表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:02","updateBy":null,"updateTime":"2024-09-14 12:20:02","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:00","updateBy":null,"updateTime":"2024-09-14 12:20:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_dept","tableComment":"部门表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:00","updateBy":null,"updateTime":"2024-09-14 12:20:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:19:59","updateBy":null,"updateTime":"2024-09-14 12:19:59","remark":null,"tableId":null,"dbName":null,"tableName":"sys_config","tableComment":"参数配置表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:19:59","updateBy":null,"updateTime":"2024-09-14 12:19:59","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"capJavaField":null,"increment":false,"query":false,"pk":false,"edit":false,"insert":false,"usableColumn":false,"superColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:34:13 GMT", connection:"close"] - 耗时/时间=173MS-2024-09-17 15:34:13-2024-09-17 15:34:13 -]] -15:34:16.960 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@70112f5f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_config], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:34:16 GMT", connection:"close"] - 耗时/时间=345MS-2024-09-17 15:34:16-2024-09-17 15:34:16 -]] -15:37:51.864 [nacos-grpc-client-executor-47.116.173.119-185] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Receive server push request, request = NotifySubscriberRequest, requestId = 12065 -15:37:51.864 [nacos-grpc-client-executor-47.116.173.119-185] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:37:51.865 [nacos-grpc-client-executor-47.116.173.119-185] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:37:51.866 [nacos-grpc-client-executor-47.116.173.119-185] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Ack server push request, request = NotifySubscriberRequest, requestId = 12065 -15:37:53.178 [nacos-grpc-client-executor-47.116.173.119-186] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Receive server push request, request = NotifySubscriberRequest, requestId = 12067 -15:37:53.179 [nacos-grpc-client-executor-47.116.173.119-186] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:37:53.179 [nacos-grpc-client-executor-47.116.173.119-186] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:37:53.180 [nacos-grpc-client-executor-47.116.173.119-186] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d1760b7b-e93e-428c-b368-e4d2ac4ba91e] Ack server push request, request = NotifySubscriberRequest, requestId = 12067 -15:37:55.738 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:37:55.738 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:37:55.869 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:37:55.870 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:37:55.871 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:37:55.872 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:37:55.872 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->d1760b7b-e93e-428c-b368-e4d2ac4ba91e -15:37:55.872 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@472f2118[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 92] -15:37:55.872 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:37:55.872 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@c7bf4f8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:37:55.872 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558401066_117.136.120.204_26612 -15:37:55.876 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6a8a9ab6[Running, pool size = 15, active threads = 0, queued tasks = 0, completed tasks = 189] -15:37:55.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->d1760b7b-e93e-428c-b368-e4d2ac4ba91e -15:37:55.877 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:37:55.877 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:37:55.879 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:42:00.558 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:42:04.435 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -15:42:04.929 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -15:42:05.430 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -15:42:05.430 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -15:42:05.431 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -15:42:05.431 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -15:42:05.431 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -15:42:05.431 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -15:42:05.431 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -15:42:05.431 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -15:42:05.431 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -15:42:05.432 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:42:05.432 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:42:05.434 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:42:05.435 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:42:05.436 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -15:42:05.442 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -15:42:05.443 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6d328938-91e0-44b5-a77e-796796c42d88_config-0 -15:42:05.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7e690 -15:42:05.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7eab0 -15:42:05.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:42:05.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:42:05.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:42:05.444 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:42:05.935 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558927709_117.136.120.204_26626 -15:42:05.936 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:05.936 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Notify connected event to listeners. -15:42:05.936 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8228 -15:42:05.936 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6d328938-91e0-44b5-a77e-796796c42d88_config-0] Connected,notify listen context... -15:42:06.408 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:42:06.408 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:42:06.409 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:42:06.414 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:42:06.418 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:42:06.419 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:42:06.576 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 23344705-8354-4fcd-b6f1-4ae44f46594c -15:42:06.579 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->23344705-8354-4fcd-b6f1-4ae44f46594c -15:42:06.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:42:06.580 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:42:06.580 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:42:06.581 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:42:06.581 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:42:06.760 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558928727_117.136.120.204_26627 -15:42:06.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:06.761 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Notify connected event to listeners. -15:42:06.761 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8228 -15:42:06.761 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:42:06.762 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:42:06.807 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.245.139:8080 register finished -15:42:06.885 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:42:06.885 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:42:06.885 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:42:06.885 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:42:06.885 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:42:06.885 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:42:06.885 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:42:06.886 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:42:06.886 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:42:06.886 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:42:06.886 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:42:06.886 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:42:06.942 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:06.942 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:06.942 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:06.943 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:06.943 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:06.943 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:07.064 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -15:42:07.173 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 10.088 seconds (process running for 10.628) -15:42:07.177 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -15:42:07.177 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -15:42:07.178 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -15:42:07.178 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -15:42:07.178 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -15:42:07.178 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -15:42:07.179 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -15:42:07.180 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:42:07.180 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -15:42:07.375 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Receive server push request, request = NotifySubscriberRequest, requestId = 12072 -15:42:07.376 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Ack server push request, request = NotifySubscriberRequest, requestId = 12072 -15:42:07.480 [nacos-grpc-client-executor-47.116.173.119-48] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Receive server push request, request = NotifySubscriberRequest, requestId = 12073 -15:42:07.481 [nacos-grpc-client-executor-47.116.173.119-48] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Ack server push request, request = NotifySubscriberRequest, requestId = 12073 -15:42:07.484 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Receive server push request, request = NotifySubscriberRequest, requestId = 12074 -15:42:07.488 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Ack server push request, request = NotifySubscriberRequest, requestId = 12074 -15:42:37.241 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:42:37.242 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:42:37.242 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:42:37.242 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:42:37.242 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:42:37.242 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:42:37.242 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:42:37.243 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:42:37.323 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:42:37.323 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:42:37.323 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:37.323 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:37.323 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:37.324 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:37.966 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Receive server push request, request = NotifySubscriberRequest, requestId = 12079 -15:42:37.967 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Ack server push request, request = NotifySubscriberRequest, requestId = 12079 -15:42:37.972 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Receive server push request, request = NotifySubscriberRequest, requestId = 12080 -15:42:37.973 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Ack server push request, request = NotifySubscriberRequest, requestId = 12080 -15:51:37.871 [nacos-grpc-client-executor-47.116.173.119-279] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Receive server push request, request = NotifySubscriberRequest, requestId = 12090 -15:51:37.872 [nacos-grpc-client-executor-47.116.173.119-279] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:51:37.872 [nacos-grpc-client-executor-47.116.173.119-279] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:51:37.874 [nacos-grpc-client-executor-47.116.173.119-279] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Ack server push request, request = NotifySubscriberRequest, requestId = 12090 -15:51:37.971 [nacos-grpc-client-executor-47.116.173.119-280] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Receive server push request, request = NotifySubscriberRequest, requestId = 12092 -15:51:37.972 [nacos-grpc-client-executor-47.116.173.119-280] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:51:37.972 [nacos-grpc-client-executor-47.116.173.119-280] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:51:37.973 [nacos-grpc-client-executor-47.116.173.119-280] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Ack server push request, request = NotifySubscriberRequest, requestId = 12092 -15:51:38.173 [nacos-grpc-client-executor-47.116.173.119-281] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Receive server push request, request = NotifySubscriberRequest, requestId = 12094 -15:51:38.173 [nacos-grpc-client-executor-47.116.173.119-281] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:51:38.173 [nacos-grpc-client-executor-47.116.173.119-281] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -15:51:38.174 [nacos-grpc-client-executor-47.116.173.119-281] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23344705-8354-4fcd-b6f1-4ae44f46594c] Ack server push request, request = NotifySubscriberRequest, requestId = 12094 -15:51:39.462 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:51:39.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:51:39.519 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:51:39.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:51:39.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:51:39.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:51:39.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->23344705-8354-4fcd-b6f1-4ae44f46594c -15:51:39.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@160cc3cb[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 190] -15:51:39.521 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:51:39.521 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7b25f196[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:51:39.521 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558928727_117.136.120.204_26627 -15:51:39.524 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3666bb89[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 283] -15:51:39.524 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->23344705-8354-4fcd-b6f1-4ae44f46594c -15:51:39.525 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:51:39.525 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:51:39.525 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:52:06.238 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:52:08.678 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -15:52:09.025 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -15:52:09.368 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -15:52:09.368 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -15:52:09.369 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -15:52:09.369 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -15:52:09.369 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -15:52:09.369 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -15:52:09.369 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -15:52:09.369 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -15:52:09.369 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -15:52:09.369 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:52:09.369 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:52:09.371 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:52:09.371 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:52:09.372 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -15:52:09.377 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -15:52:09.377 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0 -15:52:09.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7e258 -15:52:09.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7e678 -15:52:09.377 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -15:52:09.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -15:52:09.378 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:52:09.378 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:52:09.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726559531536_117.136.120.204_26648 -15:52:09.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:52:09.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Notify connected event to listeners. -15:52:09.563 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8228 -15:52:09.563 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Connected,notify listen context... -15:52:09.909 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:52:09.910 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:52:09.910 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:52:09.913 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:52:09.916 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:52:09.916 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:52:10.056 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 96fdee42-64a9-4a08-ab59-e105e8e734d8 -15:52:10.058 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->96fdee42-64a9-4a08-ab59-e105e8e734d8 -15:52:10.058 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:52:10.059 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:52:10.059 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:52:10.060 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:52:10.060 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:52:10.236 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726559532221_117.136.120.204_26649 -15:52:10.236 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:52:10.236 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Notify connected event to listeners. -15:52:10.237 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8228 -15:52:10.237 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:52:10.238 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:52:10.332 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.245.139:8080 register finished -15:52:10.401 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:52:10.402 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:52:10.402 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:52:10.402 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:52:10.402 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:52:10.402 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:52:10.402 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:52:10.402 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:52:10.402 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:52:10.402 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:52:10.402 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:52:10.403 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:52:10.410 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:52:10.410 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:52:10.410 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:52:10.410 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:52:10.410 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:52:10.411 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:52:10.411 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:52:10.411 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:52:10.412 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:52:10.412 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:52:10.412 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:52:10.412 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:52:10.510 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.510 [boundedElastic-13] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.510 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.510 [boundedElastic-12] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.510 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.510 [boundedElastic-10] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.510 [boundedElastic-11] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:52:10.511 [boundedElastic-13] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.511 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.511 [boundedElastic-11] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:52:10.513 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.513 [boundedElastic-12] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.513 [boundedElastic-10] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.513 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.694 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -15:52:10.761 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 7.499 seconds (process running for 8.166) -15:52:10.763 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -15:52:10.763 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -15:52:10.764 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -15:52:10.764 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -15:52:10.764 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -15:52:10.764 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -15:52:10.765 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -15:52:10.766 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:52:10.766 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -15:52:10.876 [nacos-grpc-client-executor-47.116.173.119-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12107 -15:52:10.877 [nacos-grpc-client-executor-47.116.173.119-60] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.877 [nacos-grpc-client-executor-47.116.173.119-60] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:52:10.878 [nacos-grpc-client-executor-47.116.173.119-60] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12107 -15:52:11.075 [nacos-grpc-client-executor-47.116.173.119-1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12109 -15:52:11.075 [nacos-grpc-client-executor-47.116.173.119-1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12109 -15:52:11.077 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12110 -15:52:11.077 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12110 -15:52:11.080 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12111 -15:52:11.082 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12111 -15:52:11.085 [nacos-grpc-client-executor-47.116.173.119-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12112 -15:52:11.085 [nacos-grpc-client-executor-47.116.173.119-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12112 -15:52:11.089 [nacos-grpc-client-executor-47.116.173.119-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12113 -15:52:11.089 [nacos-grpc-client-executor-47.116.173.119-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12113 -15:53:00.306 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@a91731b[ +09:19:23.382 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: +09:19:23.383 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: +09:19:23.396 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:19:23.396 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:19:24.001 [nacos-grpc-client-executor-110.42.213.184-160] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3662 +09:19:24.002 [nacos-grpc-client-executor-110.42.213.184-160] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3662 +09:19:25.037 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:19:45.047 [boundedElastic-12] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:20:05.058 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:20:25.138 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:20:45.162 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:21:05.044 [boundedElastic-15] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:21:25.050 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:21:38.475 [nacos-grpc-client-executor-110.42.213.184-215] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3664 +09:21:38.476 [nacos-grpc-client-executor-110.42.213.184-215] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:21:38.476 [nacos-grpc-client-executor-110.42.213.184-215] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:21:38.477 [nacos-grpc-client-executor-110.42.213.184-215] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3664 +09:21:45.123 [boundedElastic-12] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:22:03.911 [nacos-grpc-client-executor-110.42.213.184-229] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3665 +09:22:03.912 [nacos-grpc-client-executor-110.42.213.184-229] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:22:03.912 [nacos-grpc-client-executor-110.42.213.184-229] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:22:03.912 [nacos-grpc-client-executor-110.42.213.184-229] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3665 +09:22:05.058 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:22:25.151 [boundedElastic-17] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:22:45.080 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:23:05.151 [boundedElastic-15] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:23:25.182 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:23:31.150 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@32f5069[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:53:00 GMT", connection:"close"] - 耗时/时间=494MS-2024-09-17 15:52:59-2024-09-17 15:53:00 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:23:31 GMT", connection:"close"] + 耗时/时间=60MS-2024-09-23 09:23:31-2024-09-23 09:23:31 ]] -15:53:00.483 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@29783da5[ +09:23:31.296 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2068d932[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:53:00 GMT", connection:"close"] - 耗时/时间=102MS-2024-09-17 15:53:00-2024-09-17 15:53:00 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:23:31 GMT", connection:"close"] + 耗时/时间=116MS-2024-09-23 09:23:31-2024-09-23 09:23:31 ]] -15:53:47.402 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6850e3f3[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:53:47 GMT", connection:"close"] - 耗时/时间=807MS-2024-09-17 15:53:46-2024-09-17 15:53:47 -]] -15:53:48.607 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@11a73d19[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:53:48 GMT", connection:"close"] - 耗时/时间=170MS-2024-09-17 15:53:48-2024-09-17 15:53:48 -]] -15:53:48.653 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@13138c0c[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:53:48 GMT", connection:"close"] - 耗时/时间=217MS-2024-09-17 15:53:48-2024-09-17 15:53:48 -]] -15:53:57.781 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6ec6a68a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user,sys_role_dept,sys_role_menu], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:53:57 GMT", connection:"close"] - 耗时/时间=590MS-2024-09-17 15:53:57-2024-09-17 15:53:57 -]] -15:56:51.937 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3a4800e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:56:51 GMT", connection:"close"] - 耗时/时间=104MS-2024-09-17 15:56:51-2024-09-17 15:56:51 -]] -15:56:52.092 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5c7976da[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:56:51 GMT", connection:"close"] - 耗时/时间=120MS-2024-09-17 15:56:51-2024-09-17 15:56:52 -]] -15:56:55.164 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3efb478e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:56:55 GMT", connection:"close"] - 耗时/时间=135MS-2024-09-17 15:56:55-2024-09-17 15:56:55 -]] -15:56:56.800 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7a979df5[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:56:56 GMT", connection:"close"] - 耗时/时间=125MS-2024-09-17 15:56:56-2024-09-17 15:56:56 -]] -15:56:56.851 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@49054288[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:56:56 GMT", connection:"close"] - 耗时/时间=176MS-2024-09-17 15:56:56-2024-09-17 15:56:56 -]] -15:57:00.831 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@327d23d9[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:57:00 GMT", connection:"close"] - 耗时/时间=341MS-2024-09-17 15:57:00-2024-09-17 15:57:00 -]] -15:57:49.831 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@720081f2[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:57:49 GMT", connection:"close"] - 耗时/时间=360MS-2024-09-17 15:57:49-2024-09-17 15:57:49 -]] -15:57:50.513 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2379349b[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:57:49 GMT", connection:"close"] - 耗时/时间=307MS-2024-09-17 15:57:50-2024-09-17 15:57:50 -]] -15:57:51.911 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4b6bb1fe[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:57:51 GMT", connection:"close"] - 耗时/时间=327MS-2024-09-17 15:57:51-2024-09-17 15:57:51 -]] -15:57:54.189 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@feabbf4[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:57:54 GMT", connection:"close"] - 耗时/时间=341MS-2024-09-17 15:57:53-2024-09-17 15:57:54 -]] -15:57:56.752 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@805274a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:57:56 GMT", connection:"close"] - 耗时/时间=471MS-2024-09-17 15:57:56-2024-09-17 15:57:56 -]] -15:57:59.830 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@8eaa149[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:57:59 GMT", connection:"close"] - 耗时/时间=321MS-2024-09-17 15:57:59-2024-09-17 15:57:59 -]] -15:58:02.255 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1bb5a76a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"导入失败:\r\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\r\n### The error may exist in file [E:\\桌面\\cloud-server-master\\cloud-server\\cloud-modules\\cloud-modules-gen\\target\\classes\\mapper\\generator\\GenTableMapper.xml]\r\n### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline\r\n### The error occurred while setting parameters\r\n### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() )\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list'\n; bad SQL grammar []","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 07:58:02 GMT", connection:"close"] - 耗时/时间=342MS-2024-09-17 15:58:01-2024-09-17 15:58:02 -]] -16:00:03.975 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7228a9e3[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:00:03 GMT", connection:"close"] - 耗时/时间=202MS-2024-09-17 16:00:03-2024-09-17 16:00:03 -]] -16:00:04.138 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@47e43bce[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:00:03 GMT", connection:"close"] - 耗时/时间=123MS-2024-09-17 16:00:04-2024-09-17 16:00:04 -]] -16:00:07.976 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6ef7a571[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:00:07 GMT", connection:"close"] - 耗时/时间=188MS-2024-09-17 16:00:07-2024-09-17 16:00:07 -]] -16:00:08.695 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2a7a63c1[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:00:07 GMT", connection:"close"] - 耗时/时间=137MS-2024-09-17 16:00:08-2024-09-17 16:00:08 -]] -16:00:08.775 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@762c83ba[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":15,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:00:07 GMT", connection:"close"] - 耗时/时间=217MS-2024-09-17 16:00:08-2024-09-17 16:00:08 -]] -16:00:15.303 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3af22cff[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_user_role], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:00:15 GMT", connection:"close"] - 耗时/时间=781MS-2024-09-17 16:00:14-2024-09-17 16:00:15 -]] -16:00:15.871 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@22e89c75[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":1,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:00:16","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":"SysUserRole","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"role","functionName":"用户和角色关联","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:00:16","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:00:15 GMT", connection:"close"] - 耗时/时间=195MS-2024-09-17 16:00:15-2024-09-17 16:00:15 -]] -16:02:08.528 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@55f220ee[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:02:08 GMT", connection:"close"] - 耗时/时间=174MS-2024-09-17 16:02:08-2024-09-17 16:02:08 -]] -16:02:08.691 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@a975cbb[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"313f9ced-00fb-4903-90a7-7bacd2caad2d", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":14,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:05","updateBy":null,"updateTime":"2024-09-14 14:12:44","remark":null,"tableId":null,"dbName":null,"tableName":"sys_logininfor","tableComment":"系统访问记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:05","updateBy":null,"updateTime":"2024-09-14 14:12:44","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:02:08 GMT", connection:"close"] - 耗时/时间=340MS-2024-09-17 16:02:08-2024-09-17 16:02:08 -]] -16:12:10.685 [lettuce-nioEventLoop-5-2] 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:833) -16:12:10.697 [lettuce-nioEventLoop-5-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:833) -16:12:10.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.838 [lettuce-eventExecutorLoop-3-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:12:10.850 [lettuce-eventExecutorLoop-3-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:12:10.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Server healthy check fail, currentConnection = 1726559532221_117.136.120.204_26649 -16:12:10.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Server healthy check fail, currentConnection = 1726559527581_117.136.120.204_26645 -16:12:10.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.103 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.103 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.213 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.432 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.439 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.476 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.476 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.476 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.743 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.743 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.790 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.155 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.155 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.202 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.672 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.719 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.719 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.287 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.287 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.381 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.552 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.999 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.264 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.500 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.581 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.256 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.396 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.428 [lettuce-eventExecutorLoop-3-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:16.428 [lettuce-eventExecutorLoop-3-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:16.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.852 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.103 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:17.367 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.526 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:17.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.861 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:18.123 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.175 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:18.428 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.344 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.590 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.353 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.590 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.601 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.856 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:21.919 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:21.966 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.160 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.200 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.263 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:23.405 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:23.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.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:23.607 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:23.650 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:23.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:24.174 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:24.963 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.117 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.228 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:25.501 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:25.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.930 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:26.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:26.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.118 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.379 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.542 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:28.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:28.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.081 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.340 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.426 [lettuce-eventExecutorLoop-3-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:29.426 [lettuce-eventExecutorLoop-3-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:29.483 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.725 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:30.069 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:30.309 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:31.153 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753264_117.143.60.138_58328 -16:12:31.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559531536_117.136.120.204_26648 -16:12:31.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559531536_117.136.120.204_26648 -16:12:31.197 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Notify disconnected event to listeners -16:12:31.197 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] DisConnected,clear listen context... -16:12:31.197 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Notify connected event to listeners. -16:12:31.197 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Connected,notify listen context... -16:12:31.526 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753638_117.143.60.138_58344 -16:12:31.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559532221_117.136.120.204_26649 -16:12:31.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559532221_117.136.120.204_26649 -16:12:31.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:31.580 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Notify disconnected event to listeners -16:12:31.580 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.580 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Notify connected event to listeners. -16:12:31.580 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:12:31.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753689_117.143.60.138_58345 -16:12:31.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753638_117.143.60.138_58344 -16:12:31.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753638_117.143.60.138_58344 -16:12:31.620 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Notify disconnected event to listeners -16:12:31.620 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Notify connected event to listeners. -16:12:31.620 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:12:32.018 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:32.084 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560754132_117.143.60.138_58356 -16:12:32.084 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559527581_117.136.120.204_26645 -16:12:32.084 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559527581_117.136.120.204_26645 -16:12:32.084 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:32.084 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Notify disconnected event to listeners -16:12:32.084 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:32.084 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] DisConnected,clear listen context... -16:12:32.084 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Notify connected event to listeners. -16:12:32.084 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Connected,notify listen context... -16:12:32.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560754191_117.143.60.138_58360 -16:12:32.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560754132_117.143.60.138_58356 -16:12:32.133 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560754132_117.143.60.138_58356 -16:12:32.133 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Notify disconnected event to listeners -16:12:32.133 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] DisConnected,clear listen context... -16:12:32.133 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Notify connected event to listeners. -16:12:32.133 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Connected,notify listen context... -16:12:34.367 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -16:12:34.371 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -16:12:34.392 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -16:12:34.397 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -16:12:34.397 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -16:12:34.429 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -16:12:34.444 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -16:12:34.536 [nacos-grpc-client-executor-47.116.173.119-632] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12159 -16:12:34.537 [nacos-grpc-client-executor-47.116.173.119-632] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12159 -16:12:34.709 [nacos-grpc-client-executor-47.116.173.119-633] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12162 -16:12:34.709 [nacos-grpc-client-executor-47.116.173.119-633] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12162 -16:12:34.901 [nacos-grpc-client-executor-47.116.173.119-634] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12164 -16:12:34.901 [nacos-grpc-client-executor-47.116.173.119-634] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12164 -16:12:34.914 [nacos-grpc-client-executor-47.116.173.119-635] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12165 -16:12:34.914 [nacos-grpc-client-executor-47.116.173.119-635] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12165 -16:12:34.916 [nacos-grpc-client-executor-47.116.173.119-636] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12168 -16:12:34.916 [nacos-grpc-client-executor-47.116.173.119-636] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12168 -16:12:35.008 [nacos-grpc-client-executor-47.116.173.119-637] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12170 -16:12:35.008 [nacos-grpc-client-executor-47.116.173.119-637] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12170 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-638] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12173 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-638] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12173 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-639] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12174 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-639] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12174 -16:12:46.127 [lettuce-eventExecutorLoop-3-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:46.127 [lettuce-eventExecutorLoop-3-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:46.159 [lettuce-nioEventLoop-5-12] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:12:46.159 [lettuce-nioEventLoop-5-11] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:39.398 [lettuce-nioEventLoop-5-12] 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:833) -16:28:39.398 [lettuce-nioEventLoop-5-11] 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:833) -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.402 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.426 [lettuce-eventExecutorLoop-3-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:28:39.426 [lettuce-eventExecutorLoop-3-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:28:39.523 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.526 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.526 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.530 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.531 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.730 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.732 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.736 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.751 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:40.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.330 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722291_117.136.120.204_26980 -16:28:40.330 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753264_117.143.60.138_58328 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753264_117.143.60.138_58328 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Notify disconnected event to listeners -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] DisConnected,clear listen context... -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Notify connected event to listeners. -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6ab1cfdb-2ba5-4aa7-9348-f517e1c328bc_config-0] Connected,notify listen context... -16:28:40.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722293_117.136.120.204_26972 -16:28:40.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753689_117.143.60.138_58345 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753689_117.143.60.138_58345 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Notify disconnected event to listeners -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722292_117.136.120.204_26659 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Notify connected event to listeners. -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560754191_117.143.60.138_58360 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560754191_117.143.60.138_58360 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Notify disconnected event to listeners -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] DisConnected,clear listen context... -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Notify connected event to listeners. -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [290a02e4-18da-4cf7-9cca-03d934f2e740_config-0] Connected,notify listen context... -16:28:40.916 [lettuce-nioEventLoop-5-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:40.920 [lettuce-nioEventLoop-5-1] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:43.000 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -16:28:43.065 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -16:28:43.223 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -16:28:43.268 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -16:28:43.301 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -16:28:43.321 [nacos-grpc-client-executor-47.116.173.119-1034] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12262 -16:28:43.322 [nacos-grpc-client-executor-47.116.173.119-1034] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12262 -16:28:43.340 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -16:28:43.428 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -16:28:43.638 [nacos-grpc-client-executor-47.116.173.119-1038] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12266 -16:28:43.638 [nacos-grpc-client-executor-47.116.173.119-1038] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12266 -16:28:43.725 [nacos-grpc-client-executor-47.116.173.119-1039] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12270 -16:28:43.725 [nacos-grpc-client-executor-47.116.173.119-1039] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12270 -16:28:43.822 [nacos-grpc-client-executor-47.116.173.119-1040] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12274 -16:28:43.823 [nacos-grpc-client-executor-47.116.173.119-1040] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12274 -16:28:43.923 [nacos-grpc-client-executor-47.116.173.119-1041] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12276 -16:28:43.924 [nacos-grpc-client-executor-47.116.173.119-1041] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12276 -16:28:44.021 [nacos-grpc-client-executor-47.116.173.119-1042] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12278 -16:28:44.021 [nacos-grpc-client-executor-47.116.173.119-1042] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12278 -16:28:59.639 [nacos-grpc-client-executor-47.116.173.119-1050] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12308 -16:28:59.640 [nacos-grpc-client-executor-47.116.173.119-1050] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12308 -16:29:07.117 [nacos-grpc-client-executor-47.116.173.119-1052] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12343 -16:29:07.117 [nacos-grpc-client-executor-47.116.173.119-1052] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12343 -16:29:07.118 [nacos-grpc-client-executor-47.116.173.119-1053] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12345 -16:29:07.118 [nacos-grpc-client-executor-47.116.173.119-1053] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12345 -16:29:07.424 [nacos-grpc-client-executor-47.116.173.119-1054] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12348 -16:29:07.424 [nacos-grpc-client-executor-47.116.173.119-1054] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12348 -16:29:07.425 [nacos-grpc-client-executor-47.116.173.119-1055] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12349 -16:29:07.425 [nacos-grpc-client-executor-47.116.173.119-1055] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12349 -16:29:07.763 [nacos-grpc-client-executor-47.116.173.119-1056] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12351 -16:29:07.763 [nacos-grpc-client-executor-47.116.173.119-1056] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12351 -16:31:48.055 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1048293a[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-DELETE}:/auth/logout ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@673c7c36, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1559/0x00000008015e2000@67cf28ca, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=ky2GRhVuf5Goe/k8b6tWoJMfl2RcoRmTiq/Zx3PGrKQCaD510opDWFGhmQdr1JM0EtdGKP7vsTqcaWqS+QT/vw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjMxM2Y5Y2VkLTAwZmItNDkwMy05MGE3LTdiYWNkMmNhYWQyZCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NTgyNjEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.vRu5Iqa52dV36p1xvutsRg1W97TY0S3jq5Q6xlyD710", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:31:48 GMT", connection:"close"] - 耗时/时间=476MS-2024-09-17 16:31:47-2024-09-17 16:31:48 -]] -16:31:51.274 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@58e8fdca[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@673c7c36, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1559/0x00000008015e2000@67cf28ca, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:31:51 GMT", connection:"close"] - 耗时/时间=515MS-2024-09-17 16:31:50-2024-09-17 16:31:51 -]] -16:31:51.396 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5d03c80a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:31:51 GMT", connection:"close"] - 耗时/时间=79MS-2024-09-17 16:31:51-2024-09-17 16:31:51 -]] -16:31:51.833 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4d2d86ec[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:31:51 GMT", connection:"close"] - 耗时/时间=93MS-2024-09-17 16:31:51-2024-09-17 16:31:51 -]] -16:31:56.223 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@340f8b45[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:31:56 GMT", connection:"close"] - 耗时/时间=125MS-2024-09-17 16:31:56-2024-09-17 16:31:56 -]] -16:31:57.743 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6effc877[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["car_seven","eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:31:57 GMT", connection:"close"] - 耗时/时间=109MS-2024-09-17 16:31:57-2024-09-17 16:31:57 -]] -16:31:57.835 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@13301504[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":23,"rows":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group_mid","tableComment":"围栏组连接表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group","tableComment":"围栏组表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_corpuscle_fence","tableComment":"电子围栏表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:31:57 GMT", connection:"close"] - 耗时/时间=200MS-2024-09-17 16:31:57-2024-09-17 16:31:57 -]] -16:32:12.241 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7485adb9[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car_details,sys_firm,sys_fiem_details], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:12 GMT", connection:"close"] - 耗时/时间=3176MS-2024-09-17 16:32:09-2024-09-17 16:32:12 -]] -16:32:12.721 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@28800f1e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":3,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:12 GMT", connection:"close"] - 耗时/时间=131MS-2024-09-17 16:32:12-2024-09-17 16:32:12 -]] -16:32:14.612 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@12fe721f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car_details,sys_firm,sys_fiem_details], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:14 GMT", connection:"close"] - 耗时/时间=2994MS-2024-09-17 16:32:11-2024-09-17 16:32:14 -]] -16:32:15.155 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2673064[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":6,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:13","updateBy":"","updateTime":null,"remark":null,"tableId":4,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:13","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":4,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:14","updateBy":"","updateTime":null,"remark":null,"tableId":5,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:14","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":5,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:15","updateBy":"","updateTime":null,"remark":null,"tableId":6,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:15","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":6,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:14 GMT", connection:"close"] - 耗时/时间=170MS-2024-09-17 16:32:14-2024-09-17 16:32:15 -]] -16:32:23.399 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@77ef0d6f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-DELETE}:/code/gen/6,5,4 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:23 GMT", connection:"close"] - 耗时/时间=362MS-2024-09-17 16:32:23-2024-09-17 16:32:23 -]] -16:32:23.857 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4a21d8ed[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":3,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:23 GMT", connection:"close"] - 耗时/时间=109MS-2024-09-17 16:32:23-2024-09-17 16:32:23 -]] -16:32:31.476 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2fa3e388[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":20,"rows":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_corpuscle_fence","tableComment":"电子围栏表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group_mid","tableComment":"围栏组连接表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group","tableComment":"围栏组表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:31 GMT", connection:"close"] - 耗时/时间=180MS-2024-09-17 16:32:31-2024-09-17 16:32:31 -]] -16:32:31.723 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2c275c59[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["car_seven","eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:31 GMT", connection:"close"] - 耗时/时间=89MS-2024-09-17 16:32:31-2024-09-17 16:32:31 -]] -16:32:35.242 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@57557084[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[2], pageSize=[10], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":20,"rows":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":"2024-09-14 12:20:14","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"tableId":null,"dbName":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":"2024-09-14 12:20:13","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_oper_log","tableComment":"操作日志记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:11","updateBy":null,"updateTime":"2024-09-14 14:14:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"tableId":null,"dbName":null,"tableName":"sys_notice","tableComment":"通知公告表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:09","updateBy":null,"updateTime":"2024-09-14 12:20:09","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"tableId":null,"dbName":null,"tableName":"sys_menu","tableComment":"菜单权限表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:07","updateBy":null,"updateTime":"2024-09-14 12:20:08","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:05","updateBy":null,"updateTime":"2024-09-14 14:12:44","remark":null,"tableId":null,"dbName":null,"tableName":"sys_logininfor","tableComment":"系统访问记录","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:05","updateBy":null,"updateTime":"2024-09-14 14:12:44","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:04","updateBy":null,"updateTime":"2024-09-14 12:20:04","remark":null,"tableId":null,"dbName":null,"tableName":"sys_dict_type","tableComment":"字典类型表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:04","updateBy":null,"updateTime":"2024-09-14 12:20:04","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:02","updateBy":null,"updateTime":"2024-09-14 12:20:02","remark":null,"tableId":null,"dbName":null,"tableName":"sys_dict_data","tableComment":"字典数据表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:02","updateBy":null,"updateTime":"2024-09-14 12:20:02","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:00","updateBy":null,"updateTime":"2024-09-14 12:20:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_dept","tableComment":"部门表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:00","updateBy":null,"updateTime":"2024-09-14 12:20:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:19:59","updateBy":null,"updateTime":"2024-09-14 12:19:59","remark":null,"tableId":null,"dbName":null,"tableName":"sys_config","tableComment":"参数配置表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:19:59","updateBy":null,"updateTime":"2024-09-14 12:19:59","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:35 GMT", connection:"close"] - 耗时/时间=181MS-2024-09-17 16:32:35-2024-09-17 16:32:35 -]] -16:32:37.483 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@35a90679[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":20,"rows":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_corpuscle_fence","tableComment":"电子围栏表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group_mid","tableComment":"围栏组连接表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group","tableComment":"围栏组表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":"2024-09-14 12:20:22","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":"2024-09-14 12:20:21","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":"2024-09-14 14:14:00","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":"2024-09-14 12:20:17","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":"2024-09-14 12:20:15","remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":false,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:37 GMT", connection:"close"] - 耗时/时间=168MS-2024-09-17 16:32:37-2024-09-17 16:32:37 -]] -16:32:52.319 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@8bad27d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:52 GMT", connection:"close"] - 耗时/时间=1502MS-2024-09-17 16:32:50-2024-09-17 16:32:52 -]] -16:32:52.538 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1032df[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:52 GMT", connection:"close"] - 耗时/时间=179MS-2024-09-17 16:32:52-2024-09-17 16:32:52 -]] -16:32:58.782 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@27a578ed[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:58 GMT", connection:"close"] - 耗时/时间=87MS-2024-09-17 16:32:58-2024-09-17 16:32:58 -]] -16:32:58.857 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@63fd9fba[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:58 GMT", connection:"close"] - 耗时/时间=161MS-2024-09-17 16:32:58-2024-09-17 16:32:58 -]] -16:32:58.988 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6005aeea[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/7 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"increment":true,"query":false,"capJavaField":"Id","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"increment":false,"query":true,"capJavaField":"CarVin","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"increment":false,"query":true,"capJavaField":"CarPlate","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"increment":false,"query":true,"capJavaField":"CarBrand","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"increment":false,"query":true,"capJavaField":"CarModel","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"increment":false,"query":true,"capJavaField":"CarType","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"increment":false,"query":true,"capJavaField":"State","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"increment":false,"query":false,"capJavaField":"CreateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"increment":false,"query":false,"capJavaField":"CreateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"increment":false,"query":false,"capJavaField":"UpdateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"increment":false,"query":false,"capJavaField":"UpdateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"increment":false,"query":false,"capJavaField":"Remark","list":true,"pk":false,"usableColumn":true,"superColumn":true,"edit":true,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"increment":false,"query":false,"capJavaField":"Id","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"increment":false,"query":false,"capJavaField":"UserId","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"increment":false,"query":true,"capJavaField":"CarVin","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"increment":false,"query":false,"capJavaField":"RoleId","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"increment":false,"query":true,"capJavaField":"CarMotorModel","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"increment":false,"query":true,"capJavaField":"CarBatteryModel","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"increment":true,"query":false,"capJavaField":"Id","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"increment":false,"query":true,"capJavaField":"FirmName","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"increment":false,"query":true,"capJavaField":"FirmLogs","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"increment":false,"query":true,"capJavaField":"FirmLegalPerson","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"increment":false,"query":true,"capJavaField":"FirmPhone","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"increment":false,"query":true,"capJavaField":"FirmEmail","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"increment":false,"query":true,"capJavaField":"FirmWebsite","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"increment":false,"query":true,"capJavaField":"FirmAddress","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"increment":false,"query":true,"capJavaField":"FirmDesc","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"increment":false,"query":true,"capJavaField":"State","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"increment":false,"query":false,"capJavaField":"CreateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"increment":false,"query":false,"capJavaField":"CreateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"increment":false,"query":false,"capJavaField":"UpdateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"increment":false,"query":false,"capJavaField":"UpdateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"increment":false,"query":false,"capJavaField":"Remark","list":true,"pk":false,"usableColumn":true,"superColumn":true,"edit":true,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"increment":false,"query":false,"capJavaField":"Id","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"increment":false,"query":true,"capJavaField":"FirmEstablishTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"increment":false,"query":true,"capJavaField":"FirmProfession","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"increment":false,"query":true,"capJavaField":"FirmScale","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"increment":false,"query":true,"capJavaField":"FirmStaffNumber","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"increment":false,"query":true,"capJavaField":"FirmBusinessStart","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false}],"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"increment":true,"query":false,"capJavaField":"Id","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"increment":false,"query":true,"capJavaField":"CarVin","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"increment":false,"query":true,"capJavaField":"CarPlate","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"increment":false,"query":true,"capJavaField":"CarBrand","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"increment":false,"query":true,"capJavaField":"CarModel","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"increment":false,"query":true,"capJavaField":"CarType","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"increment":false,"query":true,"capJavaField":"State","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"increment":false,"query":false,"capJavaField":"CreateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"increment":false,"query":false,"capJavaField":"CreateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"increment":false,"query":false,"capJavaField":"UpdateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"increment":false,"query":false,"capJavaField":"UpdateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"increment":false,"query":false,"capJavaField":"Remark","list":true,"pk":false,"usableColumn":true,"superColumn":true,"edit":true,"insert":true}],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"increment":true,"query":false,"capJavaField":"Id","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"increment":false,"query":true,"capJavaField":"CarVin","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"increment":false,"query":true,"capJavaField":"CarPlate","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"increment":false,"query":true,"capJavaField":"CarBrand","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"increment":false,"query":true,"capJavaField":"CarModel","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"increment":false,"query":true,"capJavaField":"CarType","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"increment":false,"query":true,"capJavaField":"State","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"increment":false,"query":false,"capJavaField":"CreateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"increment":false,"query":false,"capJavaField":"CreateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"increment":false,"query":false,"capJavaField":"UpdateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"increment":false,"query":false,"capJavaField":"UpdateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"increment":false,"query":false,"capJavaField":"Remark","list":true,"pk":false,"usableColumn":true,"superColumn":true,"edit":true,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:32:58 GMT", connection:"close"] - 耗时/时间=292MS-2024-09-17 16:32:58-2024-09-17 16:32:58 -]] -16:33:45.927 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@76f6c53[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-PUT}:/code/gen ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体={"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"increment":true,"query":false,"capJavaField":"Id","list":false,"pk":true,"usableColumn":false,"superColumn":false,"edit":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"increment":false,"query":true,"capJavaField":"CarVin","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"increment":false,"query":true,"capJavaField":"CarPlate","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"increment":false,"query":true,"capJavaField":"CarBrand","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"increment":false,"query":true,"capJavaField":"CarModel","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"increment":false,"query":true,"capJavaField":"CarType","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"increment":false,"query":true,"capJavaField":"State","list":true,"pk":false,"usableColumn":false,"superColumn":false,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"increment":false,"query":false,"capJavaField":"CreateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"increment":false,"query":false,"capJavaField":"CreateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"increment":false,"query":false,"capJavaField":"UpdateBy","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"increment":false,"query":false,"capJavaField":"UpdateTime","list":false,"pk":false,"usableColumn":false,"superColumn":true,"edit":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"increment":false,"query":false,"capJavaField":"Remark","list":true,"pk":false,"usableColumn":true,"superColumn":true,"edit":true,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false,"params":{"treeCode":null,"treeName":null,"treeParentCode":null,"parentMenuId":null}} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:33:45 GMT", connection:"close"] - 耗时/时间=1532MS-2024-09-17 16:33:44-2024-09-17 16:33:45 -]] -16:33:46.988 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@45cdec8a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726562025929&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"increment":false,"query":false,"capJavaField":null,"list":false,"pk":false,"usableColumn":false,"superColumn":false,"edit":false,"insert":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"crud":true,"tree":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 08:33:46 GMT", connection:"close"] - 耗时/时间=172MS-2024-09-17 16:33:46-2024-09-17 16:33:46 -]] -16:33:52.542 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3f0fe20e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/batchGenCode ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=SFvqCik3NYuzjg6D5MtlDjulVr86WBvQTn+YKB7JngBD52nW453ZBTx1X1VE18mdRCkeM+IpbscIg7KIcPgksg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726562025929&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6Ijc3MDE3ZTBhLTUyYmMtNGEwZS05NDk5LWYxMzQyZDUwMTVkYyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NjE5MTEsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.1z3BoWsRMOGsq_tvZJdkb3xn_SqjUqV2_uJbC_IqTAs", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"77017e0a-52bc-4a0e-9499-f1342d5015dc", user_id:"1", username:"admin"] - 响应体= - 响应头=[Content-Disposition:"attachment; filename="ruoyi.zip"", Content-Type:"application/octet-stream;charset=UTF-8", Content-Length:"9729", Date:"Tue, 17 Sep 2024 08:33:52 GMT", connection:"close"] - 耗时/时间=316MS-2024-09-17 16:33:52-2024-09-17 16:33:52 -]] -16:49:42.267 [nacos-grpc-client-executor-47.116.173.119-1547] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12354 -16:49:42.268 [nacos-grpc-client-executor-47.116.173.119-1547] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:49:42.268 [nacos-grpc-client-executor-47.116.173.119-1547] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:49:42.269 [nacos-grpc-client-executor-47.116.173.119-1547] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12354 -16:49:42.270 [nacos-grpc-client-executor-47.116.173.119-1548] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12356 -16:49:42.271 [nacos-grpc-client-executor-47.116.173.119-1548] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:49:42.271 [nacos-grpc-client-executor-47.116.173.119-1548] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:49:42.272 [nacos-grpc-client-executor-47.116.173.119-1548] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12356 -16:49:42.570 [nacos-grpc-client-executor-47.116.173.119-1549] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12359 -16:49:42.570 [nacos-grpc-client-executor-47.116.173.119-1549] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:49:42.570 [nacos-grpc-client-executor-47.116.173.119-1549] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:49:42.571 [nacos-grpc-client-executor-47.116.173.119-1549] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12359 -16:49:42.572 [nacos-grpc-client-executor-47.116.173.119-1550] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Receive server push request, request = NotifySubscriberRequest, requestId = 12360 -16:49:42.572 [nacos-grpc-client-executor-47.116.173.119-1550] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:49:42.573 [nacos-grpc-client-executor-47.116.173.119-1550] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:49:42.574 [nacos-grpc-client-executor-47.116.173.119-1550] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [96fdee42-64a9-4a08-ab59-e105e8e734d8] Ack server push request, request = NotifySubscriberRequest, requestId = 12360 -16:49:43.860 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:49:43.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:49:43.891 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:49:43.892 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->96fdee42-64a9-4a08-ab59-e105e8e734d8 -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@72525d5e[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1148] -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@521a8d85[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722293_117.136.120.204_26972 -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@16a50aeb[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 1562] -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->96fdee42-64a9-4a08-ab59-e105e8e734d8 -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:49:43.893 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:49:43.894 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:49:52.786 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:49:56.496 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -16:49:57.024 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -16:49:57.621 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -16:49:57.621 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -16:49:57.621 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -16:49:57.622 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -16:49:57.622 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -16:49:57.622 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -16:49:57.622 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -16:49:57.622 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -16:49:57.623 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -16:49:57.623 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -16:49:57.623 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -16:49:57.626 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:49:57.626 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:49:57.628 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -16:49:57.636 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -16:49:57.636 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0 -16:49:57.637 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7d958 -16:49:57.637 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7dd78 -16:49:57.637 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:49:57.637 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:49:57.638 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:49:57.638 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:49:57.824 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726562999838_117.136.120.204_27000 -16:49:57.824 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:49:57.824 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b7d10 -16:49:57.824 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Notify connected event to listeners. -16:49:57.825 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [67cc46ba-26f6-46e6-8a9f-10fec6cadc6e_config-0] Connected,notify listen context... -16:49:58.350 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:49:58.350 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:49:58.351 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:49:58.357 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:49:58.360 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -16:49:58.361 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -16:49:58.572 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e -16:49:58.574 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e -16:49:58.574 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:49:58.574 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:49:58.575 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:49:58.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:49:58.576 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:49:58.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563000760_117.136.120.204_27001 -16:49:58.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:49:58.765 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Notify connected event to listeners. -16:49:58.765 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b7d10 -16:49:58.765 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:49:58.767 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:49:58.838 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.245.139:8080 register finished -16:49:58.921 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -16:49:58.921 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -16:49:58.921 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -16:49:58.921 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -16:49:58.921 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -16:49:58.921 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -16:49:58.921 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -16:49:58.922 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -16:49:58.922 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -16:49:58.922 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -16:49:58.921 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -16:49:58.922 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -16:49:58.922 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -16:49:58.922 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -16:49:58.922 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -16:49:58.922 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -16:49:58.922 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -16:49:58.922 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -16:49:58.922 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -16:49:58.922 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -16:49:58.922 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -16:49:58.923 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -16:49:58.923 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -16:49:58.923 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -16:49:59.001 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:49:59.001 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:49:59.002 [boundedElastic-13] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -16:49:59.002 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:49:59.002 [boundedElastic-10] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -16:49:59.003 [boundedElastic-13] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -16:49:59.003 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:49:59.003 [boundedElastic-10] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -16:49:59.003 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:49:59.003 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:49:59.006 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:49:59.007 [boundedElastic-11] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:49:59.007 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:49:59.007 [boundedElastic-11] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:49:59.086 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -16:49:59.169 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 9.264 seconds (process running for 9.852) -16:49:59.173 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -16:49:59.174 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -16:49:59.174 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -16:49:59.174 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -16:49:59.175 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -16:49:59.175 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -16:49:59.176 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -16:49:59.176 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:49:59.177 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -16:49:59.459 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12365 -16:49:59.460 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:49:59.461 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:49:59.462 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12365 -16:49:59.556 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12366 -16:49:59.557 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12366 -16:49:59.559 [nacos-grpc-client-executor-47.116.173.119-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12367 -16:49:59.560 [nacos-grpc-client-executor-47.116.173.119-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12367 -16:49:59.565 [nacos-grpc-client-executor-47.116.173.119-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12368 -16:49:59.567 [nacos-grpc-client-executor-47.116.173.119-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12368 -16:49:59.570 [nacos-grpc-client-executor-47.116.173.119-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12369 -16:49:59.570 [nacos-grpc-client-executor-47.116.173.119-6] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12369 -16:49:59.572 [nacos-grpc-client-executor-47.116.173.119-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12370 -16:49:59.573 [nacos-grpc-client-executor-47.116.173.119-7] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12370 -16:50:02.436 [nacos-grpc-client-executor-47.116.173.119-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12371 -16:50:02.436 [nacos-grpc-client-executor-47.116.173.119-8] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:02.437 [nacos-grpc-client-executor-47.116.173.119-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:02.438 [nacos-grpc-client-executor-47.116.173.119-8] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12371 -16:50:13.719 [nacos-grpc-client-executor-47.116.173.119-66] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12378 -16:50:13.719 [nacos-grpc-client-executor-47.116.173.119-66] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:13.719 [nacos-grpc-client-executor-47.116.173.119-66] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:13.720 [nacos-grpc-client-executor-47.116.173.119-66] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12378 -16:50:17.372 [nacos-grpc-client-executor-47.116.173.119-67] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12380 -16:50:17.372 [nacos-grpc-client-executor-47.116.173.119-67] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:17.373 [nacos-grpc-client-executor-47.116.173.119-67] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:17.373 [nacos-grpc-client-executor-47.116.173.119-67] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12380 -16:50:19.359 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12382 -16:50:19.360 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:19.361 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:19.362 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12382 -16:50:20.975 [nacos-grpc-client-executor-47.116.173.119-70] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12384 -16:50:20.975 [nacos-grpc-client-executor-47.116.173.119-70] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:20.975 [nacos-grpc-client-executor-47.116.173.119-70] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:50:20.976 [nacos-grpc-client-executor-47.116.173.119-70] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12384 -16:53:01.430 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d3fe79a-b003-4d10-966a-0ab245efc40b_config-0] Receive server push request, request = ConfigChangeNotifyRequest, requestId = 12400 -16:53:01.432 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.c.i.ClientWorker - [handleConfigChangeNotifyRequest,666] - [7d3fe79a-b003-4d10-966a-0ab245efc40b_config-0] [server-push] config changed. dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP,tenant=one -16:53:01.432 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7d3fe79a-b003-4d10-966a-0ab245efc40b_config-0] Ack server push request, request = ConfigChangeNotifyRequest, requestId = 12400 -16:53:01.510 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.ClientWorker - [refreshContentAndCheck,939] - [fixed-one-47.116.173.119_8848] [data-received] dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, tenant=one, md5=4f05b833f0f6cb18dd88b5673e51c1e6, content=spring: - data: - redis: - host: ${redis.host} - port: ${redis.port} - password: ${red..., type=yaml -16:53:01.511 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.CacheData - [safeNotifyListener,480] - [fixed-one-47.116.173.119_8848] [notify-listener] task execute in nacos thread, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP,tenant=one, md5=4f05b833f0f6cb18dd88b5673e51c1e6, listener=com.alibaba.cloud.nacos.refresh.NacosContextRefresher$1@1ce153fa -16:53:01.511 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.CacheData - [run,420] - [fixed-one-47.116.173.119_8848] [notify-context] dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP,tenant=one, md5=4f05b833f0f6cb18dd88b5673e51c1e6 -16:53:02.466 [nacos.client.config.listener.task-0] INFO c.a.n.c.c.i.CacheData - [run,451] - [fixed-one-47.116.173.119_8848] [notify-ok] dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP,tenant=one, md5=4f05b833f0f6cb18dd88b5673e51c1e6, listener=com.alibaba.cloud.nacos.refresh.NacosContextRefresher$1@1ce153fa ,job run cost=955 millis. -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-150] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12403 -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-150] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-150] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-150] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12403 -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-151] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12405 -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-151] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-151] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-151] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12405 -16:53:25.237 [nacos-grpc-client-executor-47.116.173.119-152] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12407 -16:53:25.237 [nacos-grpc-client-executor-47.116.173.119-152] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:25.237 [nacos-grpc-client-executor-47.116.173.119-152] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:53:25.237 [nacos-grpc-client-executor-47.116.173.119-152] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12407 -16:53:25.457 [nacos-grpc-client-executor-47.116.173.119-153] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Receive server push request, request = NotifySubscriberRequest, requestId = 12409 -16:53:25.457 [nacos-grpc-client-executor-47.116.173.119-153] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:25.457 [nacos-grpc-client-executor-47.116.173.119-153] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:53:25.457 [nacos-grpc-client-executor-47.116.173.119-153] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e] Ack server push request, request = NotifySubscriberRequest, requestId = 12409 -16:53:26.776 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:53:26.776 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3fb0d430[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 69] -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@78db7ca5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:53:26.823 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563000760_117.136.120.204_27001 -16:53:26.839 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6a577982[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 166] -16:53:26.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->39db32f8-6fc7-4dd7-8eb1-dce9c0c51a9e -16:53:26.839 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:53:26.839 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:53:26.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:53:59.094 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:54:01.512 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -16:54:01.839 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -16:54:02.207 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -16:54:02.207 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -16:54:02.207 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -16:54:02.207 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -16:54:02.207 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -16:54:02.208 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -16:54:02.208 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -16:54:02.208 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -16:54:02.208 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -16:54:02.208 [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:02.208 [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:02.210 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:54:02.210 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:54:02.211 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -16:54:02.217 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -16:54:02.217 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0 -16:54:02.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7e258 -16:54:02.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7e678 -16:54:02.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -16:54:02.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -16:54:02.217 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:54:02.218 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:54:02.559 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563244533_117.136.120.204_27025 -16:54:02.559 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:54:02.559 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Notify connected event to listeners. -16:54:02.559 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8440 -16:54:02.559 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [e2d08ca5-5843-4cba-b8d0-af2a443e2bf0_config-0] Connected,notify listen context... -16:54:02.933 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:54:02.934 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:54:02.934 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:54:02.938 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:54:02.940 [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:02.941 [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:03.081 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a05f17c6-9913-4e1e-a289-d0974103c624 -16:54:03.083 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a05f17c6-9913-4e1e-a289-d0974103c624 -16:54:03.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:54:03.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:54:03.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:54:03.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:54:03.084 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:54:03.257 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563245262_117.136.120.204_27026 -16:54:03.258 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:54:03.258 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8440 -16:54:03.258 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Notify connected event to listeners. -16:54:03.258 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:54:03.259 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:54:03.305 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.245.139:8080 register finished -16:54:03.398 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -16:54:03.398 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -16:54:03.399 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -16:54:03.399 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -16:54:03.399 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -16:54:03.399 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -16:54:03.399 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -16:54:03.399 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -16:54:03.399 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -16:54:03.399 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -16:54:03.400 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -16:54:03.400 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -16:54:03.401 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -16:54:03.401 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -16:54:03.402 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -16:54:03.403 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -16:54:03.403 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -16:54:03.403 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -16:54:03.403 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -16:54:03.403 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -16:54:03.404 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -16:54:03.404 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -16:54:03.404 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -16:54:03.405 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -16:54:03.456 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -16:54:03.457 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.457 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.457 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.457 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.457 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.457 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -16:54:03.458 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.458 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.458 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.458 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.467 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.553 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -16:54:03.665 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 7.378 seconds (process running for 7.942) -16:54:03.668 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -16:54:03.668 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -16:54:03.668 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -16:54:03.668 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -16:54:03.668 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -16:54:03.669 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -16:54:03.670 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -16:54:03.670 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:54:03.670 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -16:54:03.849 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 12421 -16:54:03.850 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.850 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.851 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 12421 -16:54:04.066 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 12423 -16:54:04.067 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 12423 -16:54:04.069 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 12424 -16:54:04.069 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 12424 -16:54:04.071 [nacos-grpc-client-executor-47.116.173.119-1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 12425 -16:54:04.073 [nacos-grpc-client-executor-47.116.173.119-1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 12425 -16:54:04.076 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 12426 -16:54:04.077 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 12426 -16:54:04.082 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 12427 -16:54:04.082 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 12427 -17:50:59.810 [nacos-grpc-client-executor-47.116.173.119-1357] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 13195 -17:50:59.811 [nacos-grpc-client-executor-47.116.173.119-1357] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:50:59.811 [nacos-grpc-client-executor-47.116.173.119-1357] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -17:50:59.812 [nacos-grpc-client-executor-47.116.173.119-1357] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 13195 -17:50:59.901 [nacos-grpc-client-executor-47.116.173.119-1358] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 13197 -17:50:59.901 [nacos-grpc-client-executor-47.116.173.119-1358] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:50:59.902 [nacos-grpc-client-executor-47.116.173.119-1358] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -17:50:59.904 [nacos-grpc-client-executor-47.116.173.119-1358] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 13197 -17:51:00.007 [nacos-grpc-client-executor-47.116.173.119-1359] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 13199 -17:51:00.007 [nacos-grpc-client-executor-47.116.173.119-1359] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:00.007 [nacos-grpc-client-executor-47.116.173.119-1359] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -17:51:00.008 [nacos-grpc-client-executor-47.116.173.119-1359] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 13199 -17:51:00.100 [nacos-grpc-client-executor-47.116.173.119-1360] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Receive server push request, request = NotifySubscriberRequest, requestId = 13201 -17:51:00.101 [nacos-grpc-client-executor-47.116.173.119-1360] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:00.101 [nacos-grpc-client-executor-47.116.173.119-1360] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -17:51:00.102 [nacos-grpc-client-executor-47.116.173.119-1360] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a05f17c6-9913-4e1e-a289-d0974103c624] Ack server push request, request = NotifySubscriberRequest, requestId = 13201 -17:51:01.411 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:51:01.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:51:01.458 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:51:01.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:51:01.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:51:01.459 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a05f17c6-9913-4e1e-a289-d0974103c624 -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@418f66f2[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1136] -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:51:01.460 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5065c91c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:51:01.461 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563245262_117.136.120.204_27026 -17:51:01.463 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4d25a6f3[Running, pool size = 12, active threads = 0, queued tasks = 0, completed tasks = 1367] -17:51:01.464 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a05f17c6-9913-4e1e-a289-d0974103c624 -17:51:01.464 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:51:01.464 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:51:01.464 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:51:34.767 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:51:37.209 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -17:51:37.546 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -17:51:37.906 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -17:51:37.907 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -17:51:37.907 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -17:51:37.907 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -17:51:37.907 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -17:51:37.907 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -17:51:37.907 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -17:51:37.907 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -17:51:37.908 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -17:51:37.908 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -17:51:37.908 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -17:51:37.909 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -17:51:37.910 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -17:51:37.911 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -17:51:37.915 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -17:51:37.916 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6f94f8c8-0a81-42dd-9518-1351711b2993_config-0 -17:51:37.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7d958 -17:51:37.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7dd78 -17:51:37.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -17:51:37.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -17:51:37.917 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -17:51:37.917 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -17:51:38.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726566700167_117.136.120.204_27375 -17:51:38.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:51:38.171 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b67e0 -17:51:38.171 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Notify connected event to listeners. -17:51:38.171 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [6f94f8c8-0a81-42dd-9518-1351711b2993_config-0] Connected,notify listen context... -17:51:38.552 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -17:51:38.552 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -17:51:38.552 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -17:51:38.556 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -17:51:38.559 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -17:51:38.559 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -17:51:38.720 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a5823aa9-33f1-4cd7-b3e5-5131a9d559e7 -17:51:38.721 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a5823aa9-33f1-4cd7-b3e5-5131a9d559e7 -17:51:38.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:51:38.722 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:51:38.723 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:51:38.723 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -17:51:38.723 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -17:51:39.121 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726566701128_117.136.120.204_27376 -17:51:39.121 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Notify connected event to listeners. -17:51:39.121 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -17:51:39.121 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:51:39.121 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b67e0 -17:51:39.122 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -17:51:39.201 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 192.168.245.139:8080 register finished -17:51:39.285 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -17:51:39.285 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -17:51:39.285 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -17:51:39.285 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -17:51:39.285 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -17:51:39.285 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -17:51:39.285 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -17:51:39.285 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -17:51:39.285 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -17:51:39.286 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -17:51:39.286 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -17:51:39.286 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -17:51:39.286 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -17:51:39.287 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -17:51:39.287 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -17:51:39.287 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -17:51:39.287 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -17:51:39.288 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -17:51:39.288 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -17:51:39.288 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -17:51:39.288 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -17:51:39.288 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -17:51:39.289 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -17:51:39.289 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -17:51:39.365 [boundedElastic-10] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -17:51:39.366 [boundedElastic-13] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.366 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.366 [boundedElastic-12] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.366 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.367 [boundedElastic-10] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -17:51:39.367 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.367 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.367 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.367 [boundedElastic-12] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.370 [boundedElastic-13] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.371 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.449 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -17:51:39.529 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 7.58 seconds (process running for 8.314) -17:51:39.532 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -17:51:39.532 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -17:51:39.532 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -17:51:39.532 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -17:51:39.532 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -17:51:39.532 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -17:51:39.533 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -17:51:39.534 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -17:51:39.534 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -17:51:39.717 [nacos-grpc-client-executor-47.116.173.119-62] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Receive server push request, request = NotifySubscriberRequest, requestId = 13218 -17:51:39.718 [nacos-grpc-client-executor-47.116.173.119-62] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.718 [nacos-grpc-client-executor-47.116.173.119-62] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:51:39.719 [nacos-grpc-client-executor-47.116.173.119-62] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Ack server push request, request = NotifySubscriberRequest, requestId = 13218 -17:51:39.917 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Receive server push request, request = NotifySubscriberRequest, requestId = 13219 -17:51:39.917 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Ack server push request, request = NotifySubscriberRequest, requestId = 13219 -17:51:39.919 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Receive server push request, request = NotifySubscriberRequest, requestId = 13220 -17:51:39.919 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Ack server push request, request = NotifySubscriberRequest, requestId = 13220 -17:51:39.923 [nacos-grpc-client-executor-47.116.173.119-1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Receive server push request, request = NotifySubscriberRequest, requestId = 13221 -17:51:39.925 [nacos-grpc-client-executor-47.116.173.119-1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Ack server push request, request = NotifySubscriberRequest, requestId = 13221 -17:51:39.928 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Receive server push request, request = NotifySubscriberRequest, requestId = 13222 -17:51:39.928 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Ack server push request, request = NotifySubscriberRequest, requestId = 13222 -17:51:39.931 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Receive server push request, request = NotifySubscriberRequest, requestId = 13223 -17:51:39.931 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Ack server push request, request = NotifySubscriberRequest, requestId = 13223 -17:58:28.990 [nacos-grpc-client-executor-47.116.173.119-227] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Receive server push request, request = NotifySubscriberRequest, requestId = 13267 -17:58:28.991 [nacos-grpc-client-executor-47.116.173.119-227] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:58:28.991 [nacos-grpc-client-executor-47.116.173.119-227] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -17:58:28.991 [nacos-grpc-client-executor-47.116.173.119-227] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Ack server push request, request = NotifySubscriberRequest, requestId = 13267 -17:58:30.339 [nacos-grpc-client-executor-47.116.173.119-228] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Receive server push request, request = NotifySubscriberRequest, requestId = 13269 -17:58:30.339 [nacos-grpc-client-executor-47.116.173.119-228] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -17:58:30.339 [nacos-grpc-client-executor-47.116.173.119-228] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -17:58:30.339 [nacos-grpc-client-executor-47.116.173.119-228] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a5823aa9-33f1-4cd7-b3e5-5131a9d559e7] Ack server push request, request = NotifySubscriberRequest, requestId = 13269 -17:58:33.079 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:58:33.079 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='192.168.245.139', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:58:33.114 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:58:33.115 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:58:33.115 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a5823aa9-33f1-4cd7-b3e5-5131a9d559e7 -17:58:33.116 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@68deaf5d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 137] -17:58:33.117 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:58:33.117 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@41fdbbf0[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:58:33.117 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726566701128_117.136.120.204_27376 -17:58:33.120 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@660953d7[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 237] -17:58:33.120 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a5823aa9-33f1-4cd7-b3e5-5131a9d559e7 -17:58:33.121 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:58:33.122 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:58:33.123 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -18:46:49.311 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -18:46:53.556 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -18:46:54.147 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -18:46:54.715 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -18:46:54.716 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -18:46:54.716 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -18:46:54.716 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -18:46:54.716 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -18:46:54.716 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -18:46:54.717 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -18:46:54.717 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -18:46:54.717 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -18:46:54.718 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -18:46:54.718 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -18:46:54.720 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -18:46:54.721 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -18:46:54.724 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -18:46:54.732 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -18:46:54.732 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c1780ff3-489b-476f-b80d-9a2d6de95294_config-0 -18:46:54.732 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7e690 -18:46:54.733 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7eab0 -18:46:54.733 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -18:46:54.733 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -18:46:54.733 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -18:46:54.734 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -18:46:54.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726570017425_117.143.60.138_58911 -18:46:54.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:46:54.852 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Notify connected event to listeners. -18:46:54.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8678 -18:46:54.852 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [c1780ff3-489b-476f-b80d-9a2d6de95294_config-0] Connected,notify listen context... -18:46:55.415 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -18:46:55.416 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -18:46:55.416 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -18:46:55.421 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -18:46:55.426 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -18:46:55.426 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -18:46:55.585 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 442f7d60-a8de-4c4a-ad23-94a3ee9cec35 -18:46:55.587 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->442f7d60-a8de-4c4a-ad23-94a3ee9cec35 -18:46:55.587 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:46:55.588 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:46:55.588 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:46:55.589 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -18:46:55.589 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -18:46:55.851 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726570018342_117.143.60.138_58913 -18:46:55.851 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:46:55.852 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Notify connected event to listeners. -18:46:55.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8678 -18:46:55.852 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -18:46:55.853 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -18:46:56.429 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.39:8080 register finished -18:46:56.618 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -18:46:56.618 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -18:46:56.618 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -18:46:56.619 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -18:46:56.619 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -18:46:56.619 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -18:46:56.619 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -18:46:56.619 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -18:46:56.619 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -18:46:56.619 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -18:46:56.619 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -18:46:56.619 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -18:46:56.619 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -18:46:56.620 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -18:46:56.620 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -18:46:56.620 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -18:46:56.753 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:46:56.753 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:46:56.753 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:46:56.753 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:46:56.755 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:46:56.755 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:46:56.755 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:46:56.761 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:46:56.925 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -18:46:57.037 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13723 -18:46:57.038 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13723 -18:46:57.155 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 11.328 seconds (process running for 12.033) -18:46:57.157 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -18:46:57.158 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -18:46:57.158 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -18:46:57.158 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -18:46:57.159 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -18:46:57.159 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -18:46:57.160 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -18:46:57.161 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -18:46:57.161 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -18:46:57.303 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13724 -18:46:57.304 [nacos-grpc-client-executor-47.116.173.119-49] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13724 -18:46:57.306 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13725 -18:46:57.307 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13725 -18:46:57.309 [nacos-grpc-client-executor-47.116.173.119-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13726 -18:46:57.310 [nacos-grpc-client-executor-47.116.173.119-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13726 -18:47:27.321 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -18:47:27.321 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -18:47:27.321 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -18:47:27.321 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -18:47:27.321 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -18:47:27.321 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -18:47:27.321 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -18:47:27.321 [boundedElastic-2] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -18:47:27.421 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -18:47:27.421 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -18:47:27.421 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -18:47:27.421 [boundedElastic-10] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:27.421 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:27.421 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:27.421 [boundedElastic-10] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:27.993 [nacos-grpc-client-executor-47.116.173.119-71] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13733 -18:47:27.993 [nacos-grpc-client-executor-47.116.173.119-71] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13733 -18:47:27.993 [nacos-grpc-client-executor-47.116.173.119-72] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13732 -18:47:27.993 [nacos-grpc-client-executor-47.116.173.119-72] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13732 -19:04:05.708 [nacos-grpc-client-executor-47.116.173.119-463] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13766 -19:04:05.709 [nacos-grpc-client-executor-47.116.173.119-463] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -19:04:05.709 [nacos-grpc-client-executor-47.116.173.119-463] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:04:05.710 [nacos-grpc-client-executor-47.116.173.119-463] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13766 -19:04:05.863 [nacos-grpc-client-executor-47.116.173.119-464] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13768 -19:04:05.863 [nacos-grpc-client-executor-47.116.173.119-464] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -19:04:05.863 [nacos-grpc-client-executor-47.116.173.119-464] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -19:04:05.864 [nacos-grpc-client-executor-47.116.173.119-464] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13768 -19:04:05.865 [nacos-grpc-client-executor-47.116.173.119-465] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13770 -19:04:05.866 [nacos-grpc-client-executor-47.116.173.119-465] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -19:04:05.866 [nacos-grpc-client-executor-47.116.173.119-465] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -19:04:05.867 [nacos-grpc-client-executor-47.116.173.119-465] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13770 -19:04:05.955 [nacos-grpc-client-executor-47.116.173.119-466] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Receive server push request, request = NotifySubscriberRequest, requestId = 13772 -19:04:05.956 [nacos-grpc-client-executor-47.116.173.119-466] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -19:04:05.956 [nacos-grpc-client-executor-47.116.173.119-466] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -19:04:05.958 [nacos-grpc-client-executor-47.116.173.119-466] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [442f7d60-a8de-4c4a-ad23-94a3ee9cec35] Ack server push request, request = NotifySubscriberRequest, requestId = 13772 -19:04:07.305 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:04:07.305 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:04:07.323 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:04:07.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:04:07.324 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:04:07.325 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->442f7d60-a8de-4c4a-ad23-94a3ee9cec35 -19:04:07.326 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1f8a19f6[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 342] -19:04:07.326 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:04:07.326 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@16289095[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:04:07.326 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726570018342_117.143.60.138_58913 -19:04:07.330 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2758b1a8[Running, pool size = 13, active threads = 0, queued tasks = 0, completed tasks = 468] -19:04:07.330 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->442f7d60-a8de-4c4a-ad23-94a3ee9cec35 -19:04:07.330 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:04:07.331 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:04:07.331 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:04:36.949 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:04:39.736 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -19:04:40.093 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -19:04:40.478 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -19:04:40.478 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -19:04:40.478 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -19:04:40.478 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -19:04:40.478 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -19:04:40.478 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -19:04:40.478 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -19:04:40.479 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -19:04:40.479 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -19:04:40.479 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:04:40.479 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:04:40.481 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:04:40.481 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:04:40.482 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -19:04:40.487 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -19:04:40.488 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f8908d75-bb37-434e-afe0-1440a12c7d40_config-0 -19:04:40.488 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7eb48 -19:04:40.488 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7ef68 -19:04:40.488 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:04:40.488 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:04:40.488 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:04:40.489 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:04:40.561 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726571083183_117.143.60.138_61411 -19:04:40.561 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:04:40.561 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8678 -19:04:40.561 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify connected event to listeners. -19:04:40.561 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Connected,notify listen context... -19:04:40.946 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:04:40.947 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:04:40.947 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:04:40.951 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:04:40.955 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:04:40.955 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:04:41.267 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of deff6f88-f17b-4b8f-9bc7-130888abad6c -19:04:41.269 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->deff6f88-f17b-4b8f-9bc7-130888abad6c -19:04:41.269 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:04:41.270 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:04:41.270 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:04:41.271 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:04:41.271 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:04:41.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726571083966_117.143.60.138_61412 -19:04:41.372 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify connected event to listeners. -19:04:41.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:04:41.372 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:04:41.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8678 -19:04:41.373 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:04:41.390 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.39:8080 register finished -19:04:41.436 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:04:41.436 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:04:41.436 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:04:41.436 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:04:41.436 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:04:41.436 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:04:41.437 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:04:41.437 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:04:41.437 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:04:41.437 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:04:41.437 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:04:41.437 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:04:41.437 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:04:41.438 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:04:41.438 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:04:41.438 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:04:41.439 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:04:41.439 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:04:41.439 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:04:41.439 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:04:41.439 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:04:41.439 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:04:41.439 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:04:41.439 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:04:41.465 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -19:04:41.465 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.465 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -19:04:41.466 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.466 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -19:04:41.466 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -19:04:41.466 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.466 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.467 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.467 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.467 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.468 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.525 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -19:04:41.579 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 8.858 seconds (process running for 9.466) -19:04:41.581 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -19:04:41.582 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -19:04:41.582 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -19:04:41.582 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -19:04:41.582 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -19:04:41.582 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -19:04:41.583 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -19:04:41.583 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:04:41.583 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -19:04:41.916 [nacos-grpc-client-executor-47.116.173.119-53] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13773 -19:04:41.917 [nacos-grpc-client-executor-47.116.173.119-53] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.918 [nacos-grpc-client-executor-47.116.173.119-53] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:41.919 [nacos-grpc-client-executor-47.116.173.119-53] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13773 -19:04:42.013 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13775 -19:04:42.014 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13775 -19:04:42.016 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13774 -19:04:42.016 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13774 -19:04:42.019 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13776 -19:04:42.020 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13776 -19:04:42.023 [nacos-grpc-client-executor-47.116.173.119-58] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13777 -19:04:42.023 [nacos-grpc-client-executor-47.116.173.119-58] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13777 -19:04:42.025 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13778 -19:04:42.025 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13778 -19:04:43.122 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13779 -19:04:43.123 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:43.124 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:04:43.125 [nacos-grpc-client-executor-47.116.173.119-61] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13779 -19:12:59.348 [nacos-grpc-client-executor-47.116.173.119-260] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13916 -19:12:59.348 [nacos-grpc-client-executor-47.116.173.119-260] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:12:59.348 [nacos-grpc-client-executor-47.116.173.119-260] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:12:59.349 [nacos-grpc-client-executor-47.116.173.119-260] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13916 -19:14:08.627 [nacos-grpc-client-executor-47.116.173.119-287] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 13924 -19:14:08.627 [nacos-grpc-client-executor-47.116.173.119-287] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:14:08.627 [nacos-grpc-client-executor-47.116.173.119-287] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:14:08.629 [nacos-grpc-client-executor-47.116.173.119-287] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 13924 -19:16:01.037 [nacos-grpc-client-executor-47.116.173.119-333] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14002 -19:16:01.037 [nacos-grpc-client-executor-47.116.173.119-333] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:16:01.038 [nacos-grpc-client-executor-47.116.173.119-333] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:16:01.040 [nacos-grpc-client-executor-47.116.173.119-333] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14002 -19:19:53.822 [nacos-grpc-client-executor-47.116.173.119-428] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14045 -19:19:53.822 [nacos-grpc-client-executor-47.116.173.119-428] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.40.1#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.40.1","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:19:53.822 [nacos-grpc-client-executor-47.116.173.119-428] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.40.1#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.40.1","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:19:53.823 [nacos-grpc-client-executor-47.116.173.119-428] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14045 -19:19:56.612 [nacos-grpc-client-executor-47.116.173.119-429] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14054 -19:19:56.612 [nacos-grpc-client-executor-47.116.173.119-429] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.40.1#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.40.1","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:19:56.613 [nacos-grpc-client-executor-47.116.173.119-429] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:19:56.614 [nacos-grpc-client-executor-47.116.173.119-429] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14054 -19:26:44.273 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Server healthy check fail, currentConnection = 1726571078922_117.143.60.138_61336 -19:26:44.273 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:26:44.274 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:47.417 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:50.430 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:26:50.634 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:50.663 [nacos-grpc-client-executor-47.116.173.119-589] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14256 -19:26:50.663 [nacos-grpc-client-executor-47.116.173.119-589] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:26:50.663 [nacos-grpc-client-executor-47.116.173.119-589] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:26:50.663 [nacos-grpc-client-executor-47.116.173.119-589] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14256 -19:26:52.008 [nacos-grpc-client-executor-47.116.173.119-590] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14264 -19:26:52.008 [nacos-grpc-client-executor-47.116.173.119-590] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:26:52.008 [nacos-grpc-client-executor-47.116.173.119-590] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:26:52.008 [nacos-grpc-client-executor-47.116.173.119-590] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14264 -19:26:53.650 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:26:53.967 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:01.715 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:02.121 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:05.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572425462_117.143.60.138_64490 -19:27:05.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571078922_117.143.60.138_61336 -19:27:05.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571078922_117.143.60.138_61336 -19:27:05.478 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Notify disconnected event to listeners -19:27:05.478 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] DisConnected,clear listen context... -19:27:05.478 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Notify connected event to listeners. -19:27:05.478 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Connected,notify listen context... -19:27:09.722 [nacos-grpc-client-executor-47.116.173.119-594] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14337 -19:27:09.722 [nacos-grpc-client-executor-47.116.173.119-594] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14337 -19:27:38.114 [nacos-grpc-client-executor-47.116.173.119-605] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14428 -19:27:38.114 [nacos-grpc-client-executor-47.116.173.119-605] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:38.114 [nacos-grpc-client-executor-47.116.173.119-605] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:38.114 [nacos-grpc-client-executor-47.116.173.119-605] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14428 -19:27:40.738 [nacos-grpc-client-executor-47.116.173.119-606] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14435 -19:27:40.738 [nacos-grpc-client-executor-47.116.173.119-606] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:40.738 [nacos-grpc-client-executor-47.116.173.119-606] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:40.738 [nacos-grpc-client-executor-47.116.173.119-606] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14435 -19:27:40.913 [nacos-grpc-client-executor-47.116.173.119-607] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14440 -19:27:40.913 [nacos-grpc-client-executor-47.116.173.119-607] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:40.913 [nacos-grpc-client-executor-47.116.173.119-607] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:40.913 [nacos-grpc-client-executor-47.116.173.119-607] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14440 -19:27:42.114 [nacos-grpc-client-executor-47.116.173.119-609] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14447 -19:27:42.114 [nacos-grpc-client-executor-47.116.173.119-609] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:42.114 [nacos-grpc-client-executor-47.116.173.119-609] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:27:42.114 [nacos-grpc-client-executor-47.116.173.119-609] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14447 -19:27:43.711 [nacos-grpc-client-executor-47.116.173.119-610] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14452 -19:27:43.711 [nacos-grpc-client-executor-47.116.173.119-610] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:43.711 [nacos-grpc-client-executor-47.116.173.119-610] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:43.712 [nacos-grpc-client-executor-47.116.173.119-610] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14452 -19:27:44.140 [nacos-grpc-client-executor-47.116.173.119-611] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14455 -19:27:44.140 [nacos-grpc-client-executor-47.116.173.119-611] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:44.140 [nacos-grpc-client-executor-47.116.173.119-611] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:27:44.141 [nacos-grpc-client-executor-47.116.173.119-611] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14455 -19:27:52.624 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Server healthy check fail, currentConnection = 1726571083183_117.143.60.138_61411 -19:27:52.624 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:27:52.624 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:55.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:58.744 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:58.959 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:01.967 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:02.288 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:06.126 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572487012_117.143.60.138_64657 -19:28:06.126 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571083183_117.143.60.138_61411 -19:28:06.126 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571083183_117.143.60.138_61411 -19:28:06.126 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify disconnected event to listeners -19:28:06.126 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] DisConnected,clear listen context... -19:28:06.126 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify connected event to listeners. -19:28:06.126 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Connected,notify listen context... -19:28:06.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:28:09.005 [nacos-grpc-client-executor-47.116.173.119-621] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14509 -19:28:09.005 [nacos-grpc-client-executor-47.116.173.119-621] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:28:09.005 [nacos-grpc-client-executor-47.116.173.119-621] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:28:09.005 [nacos-grpc-client-executor-47.116.173.119-621] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14509 -19:28:10.904 [nacos-grpc-client-executor-47.116.173.119-622] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14516 -19:28:10.904 [nacos-grpc-client-executor-47.116.173.119-622] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:28:10.904 [nacos-grpc-client-executor-47.116.173.119-622] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -19:28:10.904 [nacos-grpc-client-executor-47.116.173.119-622] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14516 -19:28:11.493 [nacos-grpc-client-executor-47.116.173.119-623] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14522 -19:28:11.493 [nacos-grpc-client-executor-47.116.173.119-623] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:28:11.493 [nacos-grpc-client-executor-47.116.173.119-623] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:28:11.493 [nacos-grpc-client-executor-47.116.173.119-623] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14522 -19:28:12.702 [nacos-grpc-client-executor-47.116.173.119-624] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14526 -19:28:12.702 [nacos-grpc-client-executor-47.116.173.119-624] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:28:12.702 [nacos-grpc-client-executor-47.116.173.119-624] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:28:12.702 [nacos-grpc-client-executor-47.116.173.119-624] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14526 -19:28:26.208 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:29:13.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Server healthy check fail, currentConnection = 1726571083966_117.143.60.138_61412 -19:29:13.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:29:13.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:14.028 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Server healthy check fail, currentConnection = 1726572487012_117.143.60.138_64657 -19:29:14.028 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:29:14.028 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:16.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Success to connect a server [47.116.173.119:8848], connectionId = 1726572556822_117.143.60.138_64843 -19:29:16.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571083966_117.143.60.138_61412 -19:29:16.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571083966_117.143.60.138_61412 -19:29:16.040 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify disconnected event to listeners -19:29:16.041 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify connected event to listeners. -19:29:16.041 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:29:17.156 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:18.240 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:29:18.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572561202_117.143.60.138_64855 -19:29:18.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572487012_117.143.60.138_64657 -19:29:18.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572487012_117.143.60.138_64657 -19:29:18.918 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify disconnected event to listeners -19:29:18.918 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] DisConnected,clear listen context... -19:29:18.918 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify connected event to listeners. -19:29:18.918 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Connected,notify listen context... -19:29:19.711 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:22.716 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:22.716 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:22.716 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:22.716 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:22.716 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:25.729 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:25.729 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:25.729 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:25.729 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:25.729 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:25.729 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:28.733 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:28.733 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:28.733 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:28.733 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:28.733 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:28.733 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:31.341 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:29:31.341 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:31.668 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Server healthy check fail, currentConnection = 1726572425462_117.143.60.138_64490 -19:29:31.668 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:29:31.668 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:31.745 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:31.745 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:31.745 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:31.745 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:31.745 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:31.745 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:34.454 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:34.749 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:34.749 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:34.749 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:34.749 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:34.749 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:34.749 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:35.212 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:29:35.212 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:36.928 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572574629_117.143.60.138_64889 -19:29:36.928 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572425462_117.143.60.138_64490 -19:29:36.928 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572425462_117.143.60.138_64490 -19:29:36.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Notify disconnected event to listeners -19:29:36.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] DisConnected,clear listen context... -19:29:36.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Notify connected event to listeners. -19:29:36.929 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [8d25b870-11a0-4992-8bb4-2dbebc914398_config-0] Connected,notify listen context... -19:29:37.463 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:29:37.666 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:37.759 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:37.759 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:37.759 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:37.759 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:37.759 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:37.760 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:38.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:40.675 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:29:40.764 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:40.764 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:40.764 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:40.764 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:40.764 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:40.764 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:40.983 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:43.766 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:43.766 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:43.766 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:43.766 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:43.766 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:43.766 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:43.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:29:44.399 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:45.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572587272_117.143.60.138_64928 -19:29:45.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572561202_117.143.60.138_64855 -19:29:45.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572561202_117.143.60.138_64855 -19:29:45.005 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify disconnected event to listeners -19:29:45.005 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] DisConnected,clear listen context... -19:29:45.005 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify connected event to listeners. -19:29:45.005 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Connected,notify listen context... -19:29:45.772 [nacos-grpc-client-executor-47.116.173.119-669] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14752 -19:29:45.772 [nacos-grpc-client-executor-47.116.173.119-669] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14752 -19:29:45.774 [nacos-grpc-client-executor-47.116.173.119-679] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14776 -19:29:45.774 [nacos-grpc-client-executor-47.116.173.119-679] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14776 -19:29:45.775 [nacos-grpc-client-executor-47.116.173.119-680] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14805 -19:29:45.775 [nacos-grpc-client-executor-47.116.173.119-680] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14805 -19:29:45.776 [nacos-grpc-client-executor-47.116.173.119-681] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14818 -19:29:45.776 [nacos-grpc-client-executor-47.116.173.119-681] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14818 -19:29:45.777 [nacos-grpc-client-executor-47.116.173.119-682] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14836 -19:29:45.778 [nacos-grpc-client-executor-47.116.173.119-682] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14836 -19:29:45.987 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:29:46.032 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:29:46.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.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:29:46.714 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Success to connect a server [47.116.173.119:8848], connectionId = 1726572589079_117.143.60.138_64936 -19:29:46.714 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572556822_117.143.60.138_64843 -19:29:46.714 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572556822_117.143.60.138_64843 -19:29:46.714 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify disconnected event to listeners -19:29:46.714 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify connected event to listeners. -19:29:46.714 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:29:46.771 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:29:46.905 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:29:47.026 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:29:48.639 [nacos-grpc-client-executor-47.116.173.119-694] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14840 -19:29:48.639 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:29:48.639 [nacos-grpc-client-executor-47.116.173.119-694] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14840 -19:29:48.640 [nacos-grpc-client-executor-47.116.173.119-695] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14842 -19:29:48.641 [nacos-grpc-client-executor-47.116.173.119-695] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14842 -19:29:49.391 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:51.292 [nacos-grpc-client-executor-47.116.173.119-697] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14854 -19:29:51.293 [nacos-grpc-client-executor-47.116.173.119-697] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14854 -19:29:52.405 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:29:52.405 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:29:53.012 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Server check success, currentServer is 47.116.173.119:8848 -19:29:53.012 [nacos-grpc-client-executor-47.116.173.119-699] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 14855 -19:29:53.013 [nacos-grpc-client-executor-47.116.173.119-699] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 14855 -19:29:53.692 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:29:53.692 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:29:53.692 [boundedElastic-29] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:29:53.692 [boundedElastic-19] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:29:53.692 [boundedElastic-22] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:29:53.692 [boundedElastic-23] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:29:53.693 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:29:53.693 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:29:53.693 [boundedElastic-29] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:29:53.693 [boundedElastic-22] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:29:53.693 [boundedElastic-19] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:29:53.693 [boundedElastic-23] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:29:55.049 [boundedElastic-27] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:29:55.049 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:29:55.049 [boundedElastic-28] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:29:55.049 [boundedElastic-27] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:29:55.050 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:29:55.050 [boundedElastic-28] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:29:55.415 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:29:58.427 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:01.446 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:01.446 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:04.456 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:04.456 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:07.463 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:07.463 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:09.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:30:09.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:10.477 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:10.477 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:12.304 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:13.492 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:13.492 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:15.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:30:15.510 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:16.497 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:16.497 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:18.517 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:30:18.830 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:19.508 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:19.508 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:21.832 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:30:22.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:22.518 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:22.518 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:30:22.784 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Success to connect a server [47.116.173.119:8848], connectionId = 1726572625085_117.143.60.138_65045 -19:30:22.784 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572589079_117.143.60.138_64936 -19:30:22.784 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572589079_117.143.60.138_64936 -19:30:22.785 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify disconnected event to listeners -19:30:22.785 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify connected event to listeners. -19:30:22.785 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:30:25.072 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:30:25.509 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-25] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-22] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-30] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-23] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-19] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-29] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-28] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-25] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-22] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-30] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-23] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-28] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-19] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-29] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:30:25.509 [boundedElastic-32] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:30:25.509 [boundedElastic-31] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:30:25.510 [boundedElastic-32] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:30:25.510 [boundedElastic-31] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:30:25.524 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:25.655 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:30:25.655 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:30:26.396 [boundedElastic-27] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:30:26.396 [boundedElastic-27] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:30:28.529 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:31.532 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:31.532 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:32.374 [nacos-grpc-client-executor-47.116.173.119-780] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15030 -19:30:32.374 [nacos-grpc-client-executor-47.116.173.119-780] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15030 -19:30:32.378 [nacos-grpc-client-executor-47.116.173.119-781] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15032 -19:30:32.378 [nacos-grpc-client-executor-47.116.173.119-781] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15032 -19:30:32.378 [nacos-grpc-client-executor-47.116.173.119-782] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15031 -19:30:32.378 [nacos-grpc-client-executor-47.116.173.119-782] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15031 -19:30:32.378 [nacos-grpc-client-executor-47.116.173.119-783] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15033 -19:30:32.378 [nacos-grpc-client-executor-47.116.173.119-783] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15033 -19:30:34.537 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:34.537 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:37.541 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:37.541 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:40.553 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:40.553 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:40.770 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:30:40.770 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:43.556 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:43.556 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:43.891 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:45.837 [nacos-grpc-client-executor-47.116.173.119-789] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15034 -19:30:45.837 [nacos-grpc-client-executor-47.116.173.119-789] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:30:45.852 [nacos-grpc-client-executor-47.116.173.119-789] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:30:45.852 [nacos-grpc-client-executor-47.116.173.119-789] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15034 -19:30:45.852 [nacos-grpc-client-executor-47.116.173.119-791] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15037 -19:30:45.852 [nacos-grpc-client-executor-47.116.173.119-791] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15037 -19:30:46.558 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:46.558 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:46.900 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:30:46.900 [nacos-grpc-client-executor-47.116.173.119-796] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15060 -19:30:46.904 [nacos-grpc-client-executor-47.116.173.119-796] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15060 -19:30:46.906 [nacos-grpc-client-executor-47.116.173.119-797] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15062 -19:30:46.906 [nacos-grpc-client-executor-47.116.173.119-797] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15062 -19:30:46.906 [nacos-grpc-client-executor-47.116.173.119-797] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15061 -19:30:46.906 [nacos-grpc-client-executor-47.116.173.119-797] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15061 -19:30:46.907 [nacos-grpc-client-executor-47.116.173.119-797] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15063 -19:30:46.907 [nacos-grpc-client-executor-47.116.173.119-797] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15063 -19:30:46.908 [nacos-grpc-client-executor-47.116.173.119-797] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15064 -19:30:46.908 [nacos-grpc-client-executor-47.116.173.119-797] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15064 -19:30:47.023 [nacos-grpc-client-executor-47.116.173.119-798] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15065 -19:30:47.023 [nacos-grpc-client-executor-47.116.173.119-798] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15065 -19:30:47.023 [nacos-grpc-client-executor-47.116.173.119-801] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15080 -19:30:47.023 [nacos-grpc-client-executor-47.116.173.119-801] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15080 -19:30:47.102 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-804] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15097 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-804] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15097 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-805] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15098 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-805] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15098 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-806] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15099 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-806] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15099 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-807] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15100 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-807] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15100 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-808] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15101 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-808] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15101 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-809] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15102 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-809] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15102 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-810] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15117 -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-810] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-810] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:30:47.137 [nacos-grpc-client-executor-47.116.173.119-810] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15117 -19:30:47.271 [nacos-grpc-client-executor-47.116.173.119-811] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15126 -19:30:47.271 [nacos-grpc-client-executor-47.116.173.119-811] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15126 -19:30:47.272 [nacos-grpc-client-executor-47.116.173.119-812] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15127 -19:30:47.272 [nacos-grpc-client-executor-47.116.173.119-812] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:30:47.272 [nacos-grpc-client-executor-47.116.173.119-812] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -19:30:47.274 [nacos-grpc-client-executor-47.116.173.119-812] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15127 -19:30:47.275 [nacos-grpc-client-executor-47.116.173.119-813] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15140 -19:30:47.275 [nacos-grpc-client-executor-47.116.173.119-813] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15140 -19:30:47.275 [nacos-grpc-client-executor-47.116.173.119-813] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15139 -19:30:47.275 [nacos-grpc-client-executor-47.116.173.119-813] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15139 -19:30:47.275 [nacos-grpc-client-executor-47.116.173.119-813] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15141 -19:30:47.275 [nacos-grpc-client-executor-47.116.173.119-813] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15141 -19:30:48.838 [nacos-grpc-client-executor-47.116.173.119-814] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15142 -19:30:48.838 [nacos-grpc-client-executor-47.116.173.119-814] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15142 -19:30:48.838 [nacos-grpc-client-executor-47.116.173.119-815] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15143 -19:30:48.838 [nacos-grpc-client-executor-47.116.173.119-815] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15143 -19:30:48.838 [nacos-grpc-client-executor-47.116.173.119-816] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15144 -19:30:48.838 [nacos-grpc-client-executor-47.116.173.119-816] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15144 -19:30:48.838 [nacos-grpc-client-executor-47.116.173.119-817] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15151 -19:30:48.838 [nacos-grpc-client-executor-47.116.173.119-817] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15151 -19:30:48.924 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@21692e64[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@6d5c813d, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1558/0x00000008015e67d0@479e6fff, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=OMMrlAl2b5MaovGtiRzmBtv3yh1ul/vH1ZmGKpYhW9Qu+UPYNc942pDBFYHytsgJT8ASMKUa6oqgqs6ybPaoUQ==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":500,"msg":"登录用户:admin 不存在","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 11:30:48 GMT", connection:"close"] - 耗时/时间=17349MS-2024-09-17 19:30:31-2024-09-17 19:30:48 -]] -19:30:49.581 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:49.581 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:50.111 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:30:50.220 [nacos-grpc-client-executor-47.116.173.119-819] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15159 -19:30:50.220 [nacos-grpc-client-executor-47.116.173.119-819] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15159 -19:30:50.228 [nacos-grpc-client-executor-47.116.173.119-819] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15160 -19:30:50.229 [nacos-grpc-client-executor-47.116.173.119-819] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15160 -19:30:50.412 [nacos-grpc-client-executor-47.116.173.119-820] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15161 -19:30:50.412 [nacos-grpc-client-executor-47.116.173.119-820] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15161 -19:30:50.412 [nacos-grpc-client-executor-47.116.173.119-821] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15162 -19:30:50.412 [nacos-grpc-client-executor-47.116.173.119-821] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15162 -19:30:50.412 [nacos-grpc-client-executor-47.116.173.119-822] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15163 -19:30:50.412 [nacos-grpc-client-executor-47.116.173.119-822] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15163 -19:30:50.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.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:52.594 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:52.594 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:53.420 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Success to connect a server [47.116.173.119:8848], connectionId = 1726572653357_117.143.60.138_65126 -19:30:53.420 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572625085_117.143.60.138_65045 -19:30:53.420 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572625085_117.143.60.138_65045 -19:30:53.420 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify disconnected event to listeners -19:30:53.420 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Notify connected event to listeners. -19:30:53.420 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:30:55.595 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway -19:30:55.716 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:30:56.397 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:30:59.403 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:30:59.403 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:30:59.403 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:30:59.403 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:31:00.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Server healthy check fail, currentConnection = 1726572587272_117.143.60.138_64928 -19:31:00.270 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:31:00.271 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:02.412 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:31:02.412 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:31:02.412 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:31:02.412 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:31:02.412 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:31:04.797 [nacos-grpc-client-executor-47.116.173.119-833] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15184 -19:31:04.797 [nacos-grpc-client-executor-47.116.173.119-833] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15184 -19:31:04.798 [nacos-grpc-client-executor-47.116.173.119-834] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Receive server push request, request = NotifySubscriberRequest, requestId = 15191 -19:31:04.799 [nacos-grpc-client-executor-47.116.173.119-834] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Ack server push request, request = NotifySubscriberRequest, requestId = 15191 -19:31:05.427 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:31:05.427 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:31:05.427 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:31:05.427 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:31:05.427 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:31:06.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572664088_117.143.60.138_65156 -19:31:06.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572587272_117.143.60.138_64928 -19:31:06.278 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572587272_117.143.60.138_64928 -19:31:06.278 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify disconnected event to listeners -19:31:06.278 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] DisConnected,clear listen context... -19:31:06.278 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Notify connected event to listeners. -19:31:06.278 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Connected,notify listen context... -19:31:08.433 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:31:08.433 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:31:08.433 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:31:08.433 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:31:08.433 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:31:10.101 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8908d75-bb37-434e-afe0-1440a12c7d40_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:31:11.449 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:31:11.449 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -19:31:11.449 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:31:11.449 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:31:11.450 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -19:31:11.591 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [deff6f88-f17b-4b8f-9bc7-130888abad6c] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:31:11.591 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:12.552 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:31:12.552 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:31:13.014 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:31:13.015 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:31:13.015 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:31:13.016 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:31:13.016 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:31:13.016 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:31:13.016 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:31:13.016 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:31:13.017 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:31:13.018 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:31:13.018 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:31:13.018 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:31:13.018 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->deff6f88-f17b-4b8f-9bc7-130888abad6c -19:31:13.019 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3952d52[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 522] -19:31:13.019 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:31:13.019 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@37d2b581[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:31:13.019 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572653357_117.143.60.138_65126 -19:31:13.020 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3b13041e[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 837] -19:31:13.020 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->deff6f88-f17b-4b8f-9bc7-130888abad6c -19:31:13.020 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:31:13.021 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:31:13.021 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:31:13.025 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572653357_117.143.60.138_65126 -19:31:42.674 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:31:45.526 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -19:31:45.901 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -19:31:46.277 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -19:31:46.278 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -19:31:46.278 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -19:31:46.278 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -19:31:46.278 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -19:31:46.278 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -19:31:46.278 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -19:31:46.278 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -19:31:46.278 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -19:31:46.278 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:31:46.278 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:31:46.280 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:31:46.280 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:31:46.281 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -19:31:46.287 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -19:31:46.287 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0 -19:31:46.287 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7baf0 -19:31:46.287 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7bf10 -19:31:46.287 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:31:46.287 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:31:46.288 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:46.288 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:49.424 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572710199_117.143.60.138_65363 -19:31:49.424 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:31:49.425 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010bec70 -19:31:49.425 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Notify connected event to listeners. -19:31:49.426 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [9ef0616e-09e1-4074-b62d-f3c74bf566ec_config-0] Connected,notify listen context... -19:31:51.078 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:31:51.079 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:31:51.079 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:31:51.084 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:31:51.088 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:31:51.088 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:31:52.026 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1b876e38-530e-4733-8244-5250a84cfceb -19:31:52.028 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->1b876e38-530e-4733-8244-5250a84cfceb -19:31:52.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:31:52.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:31:52.028 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:31:52.029 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:52.029 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:55.039 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:55.039 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:58.047 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:58.048 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:32:01.050 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:32:01.051 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:32:03.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572724980_117.143.60.138_65424 -19:32:03.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:32:03.280 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Notify connected event to listeners. -19:32:03.280 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010bec70 -19:32:03.280 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:32:03.281 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:32:03.432 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.39:8080 register finished -19:32:03.585 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:32:03.585 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:32:03.585 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:32:03.585 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:32:03.585 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:32:03.585 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:32:03.585 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:32:03.585 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:32:03.585 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:32:03.586 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:32:03.586 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:32:03.586 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:32:03.586 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:32:03.586 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:32:03.586 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:32:03.586 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:32:04.057 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -19:32:04.625 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -19:32:04.626 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -19:32:05.604 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:05.605 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:05.766 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:05.766 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.068 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:32:07.068 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation NONE for DEFAULT_GROUP@@cloud-gateway# -19:32:07.069 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -19:32:07.069 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:32:07.069 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation NONE for DEFAULT_GROUP@@cloud-system# -19:32:07.075 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -19:32:07.534 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 41.008 seconds (process running for 41.471) -19:32:07.537 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -19:32:07.537 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -19:32:07.537 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -19:32:07.537 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -19:32:07.537 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -19:32:07.537 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -19:32:07.538 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -19:32:07.539 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:32:07.539 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -19:32:07.609 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Server check success, currentServer is 47.116.173.119:8848 -19:32:07.611 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15476 -19:32:07.612 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.612 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.613 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15476 -19:32:07.616 [nacos-grpc-client-executor-47.116.173.119-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15478 -19:32:07.616 [nacos-grpc-client-executor-47.116.173.119-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15478 -19:32:07.618 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15479 -19:32:07.619 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15479 -19:32:07.621 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15480 -19:32:07.623 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.623 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.624 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15480 -19:32:07.629 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15482 -19:32:07.629 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.629 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.630 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15482 -19:32:07.632 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15483 -19:32:07.633 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.633 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.634 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15483 -19:32:07.788 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:32:07.789 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:32:07.788 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:32:07.789 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:32:07.789 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:32:07.789 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:32:09.542 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:32:48.451 [nacos-grpc-client-executor-47.116.173.119-74] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15588 -19:32:48.452 [nacos-grpc-client-executor-47.116.173.119-74] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:48.452 [nacos-grpc-client-executor-47.116.173.119-74] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -19:32:48.453 [nacos-grpc-client-executor-47.116.173.119-74] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15588 -19:32:48.604 [nacos-grpc-client-executor-47.116.173.119-75] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15593 -19:32:48.604 [nacos-grpc-client-executor-47.116.173.119-75] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:48.605 [nacos-grpc-client-executor-47.116.173.119-75] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:48.606 [nacos-grpc-client-executor-47.116.173.119-75] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15593 -19:32:51.403 [nacos-grpc-client-executor-47.116.173.119-76] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15599 -19:32:51.403 [nacos-grpc-client-executor-47.116.173.119-76] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:51.403 [nacos-grpc-client-executor-47.116.173.119-76] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:51.404 [nacos-grpc-client-executor-47.116.173.119-76] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15599 -19:32:57.780 [nacos-grpc-client-executor-47.116.173.119-77] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15615 -19:32:57.780 [nacos-grpc-client-executor-47.116.173.119-77] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15615 -19:32:59.881 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15621 -19:32:59.882 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:59.882 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:32:59.883 [nacos-grpc-client-executor-47.116.173.119-78] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15621 -19:32:59.885 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15628 -19:32:59.886 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:59.886 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:59.887 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15628 -19:33:00.710 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:33:00.710 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:33:01.202 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation UNREGISTER for DEFAULT_GROUP@@cloud-gateway -19:33:03.188 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:33:03.189 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:33:03.189 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:33:03.189 [nacos-grpc-client-executor-47.116.173.119-82] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Receive server push request, request = NotifySubscriberRequest, requestId = 15632 -19:33:03.189 [nacos-grpc-client-executor-47.116.173.119-82] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:33:03.189 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:33:03.189 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:33:03.189 [nacos-grpc-client-executor-47.116.173.119-82] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -19:33:03.189 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:33:03.189 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:33:03.189 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:33:03.189 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:33:03.190 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:33:03.190 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:33:03.190 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:33:03.190 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->1b876e38-530e-4733-8244-5250a84cfceb -19:33:03.190 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6bc8e650[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 22] -19:33:03.190 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:33:03.190 [nacos-grpc-client-executor-47.116.173.119-82] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1b876e38-530e-4733-8244-5250a84cfceb] Ack server push request, request = NotifySubscriberRequest, requestId = 15632 -19:33:03.190 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@59455d99[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:33:03.190 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572724980_117.143.60.138_65424 -19:33:03.191 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@795a3b7c[Running, pool size = 6, active threads = 1, queued tasks = 0, completed tasks = 82] -19:33:03.191 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->1b876e38-530e-4733-8244-5250a84cfceb -19:33:03.191 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:33:03.191 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:33:03.191 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:36:30.747 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:36:34.466 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -19:36:35.000 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -19:36:35.605 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -19:36:35.606 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -19:36:35.606 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -19:36:35.606 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -19:36:35.607 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -19:36:35.607 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -19:36:35.607 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -19:36:35.607 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -19:36:35.607 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -19:36:35.608 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:36:35.608 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:36:35.611 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:36:35.611 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:36:35.613 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -19:36:35.621 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -19:36:35.622 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0 -19:36:35.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f9e500 -19:36:35.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f9e920 -19:36:35.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:36:35.622 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:36:35.623 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:36:35.623 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:36:35.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572998339_117.143.60.138_49752 -19:36:35.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:36:35.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Notify connected event to listeners. -19:36:35.712 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010d8440 -19:36:35.713 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [8eaa6bc3-3ec0-4174-9a92-4046b6f96e41_config-0] Connected,notify listen context... -19:36:36.230 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:36:36.230 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:36:36.231 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:36:36.235 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:36:36.239 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:36:36.239 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:36:36.370 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ad87a902-5789-41a0-a257-a1d3f54442fc -19:36:36.372 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ad87a902-5789-41a0-a257-a1d3f54442fc -19:36:36.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:36:36.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:36:36.373 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:36:36.374 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:36:36.374 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:36:36.681 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572999105_117.143.60.138_49753 -19:36:36.682 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:36:36.682 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Notify connected event to listeners. -19:36:36.682 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:36:36.682 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010d8440 -19:36:36.684 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:36:36.728 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.39:8080 register finished -19:36:36.808 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:36:36.808 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:36:36.808 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:36:36.808 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:36:36.808 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:36:36.808 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:36:36.809 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:36:36.809 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:36:36.809 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:36:36.809 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:36:36.811 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:36:36.812 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:36:36.813 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:36:36.813 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:36:36.813 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:36:36.814 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:36:36.814 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:36:36.814 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:36:36.814 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:36:36.814 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:36:36.857 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.857 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.857 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.857 [boundedElastic-11] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.857 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.860 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.860 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.860 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.860 [boundedElastic-11] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.861 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:36.972 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -19:36:37.095 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 9.415 seconds (process running for 10.103) -19:36:37.100 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -19:36:37.101 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -19:36:37.101 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -19:36:37.101 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -19:36:37.102 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -19:36:37.102 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -19:36:37.103 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -19:36:37.103 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:36:37.103 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -19:36:37.280 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Receive server push request, request = NotifySubscriberRequest, requestId = 15908 -19:36:37.282 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:37.282 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:36:37.283 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Ack server push request, request = NotifySubscriberRequest, requestId = 15908 -19:36:37.362 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Receive server push request, request = NotifySubscriberRequest, requestId = 15910 -19:36:37.363 [nacos-grpc-client-executor-47.116.173.119-56] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Ack server push request, request = NotifySubscriberRequest, requestId = 15910 -19:36:37.367 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Receive server push request, request = NotifySubscriberRequest, requestId = 15911 -19:36:37.368 [nacos-grpc-client-executor-47.116.173.119-57] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Ack server push request, request = NotifySubscriberRequest, requestId = 15911 -19:36:37.370 [nacos-grpc-client-executor-47.116.173.119-58] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Receive server push request, request = NotifySubscriberRequest, requestId = 15912 -19:36:37.370 [nacos-grpc-client-executor-47.116.173.119-58] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Ack server push request, request = NotifySubscriberRequest, requestId = 15912 -19:36:37.372 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Receive server push request, request = NotifySubscriberRequest, requestId = 15913 -19:36:37.373 [nacos-grpc-client-executor-47.116.173.119-59] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Ack server push request, request = NotifySubscriberRequest, requestId = 15913 -19:37:07.171 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:37:07.171 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:37:07.173 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:37:07.174 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:37:07.178 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:37:07.178 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:37:07.178 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:37:07.178 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:37:07.725 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Receive server push request, request = NotifySubscriberRequest, requestId = 15921 -19:37:07.726 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Ack server push request, request = NotifySubscriberRequest, requestId = 15921 -19:38:15.844 [nacos-grpc-client-executor-47.116.173.119-108] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Receive server push request, request = NotifySubscriberRequest, requestId = 15923 -19:38:15.844 [nacos-grpc-client-executor-47.116.173.119-108] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:38:15.844 [nacos-grpc-client-executor-47.116.173.119-108] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:38:15.845 [nacos-grpc-client-executor-47.116.173.119-108] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Ack server push request, request = NotifySubscriberRequest, requestId = 15923 -19:38:15.941 [nacos-grpc-client-executor-47.116.173.119-109] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Receive server push request, request = NotifySubscriberRequest, requestId = 15926 -19:38:15.941 [nacos-grpc-client-executor-47.116.173.119-109] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:38:15.942 [nacos-grpc-client-executor-47.116.173.119-109] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:38:15.943 [nacos-grpc-client-executor-47.116.173.119-109] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ad87a902-5789-41a0-a257-a1d3f54442fc] Ack server push request, request = NotifySubscriberRequest, requestId = 15926 -19:38:17.470 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:38:17.470 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:38:17.514 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:38:17.517 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:38:17.518 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ad87a902-5789-41a0-a257-a1d3f54442fc -19:38:17.519 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@426e8f27[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 33] -19:38:17.520 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:38:17.520 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5928f64c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:38:17.520 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572999105_117.143.60.138_49753 -19:38:17.522 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1e8562b9[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 111] -19:38:17.522 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ad87a902-5789-41a0-a257-a1d3f54442fc -19:38:17.522 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:38:17.522 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:38:17.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:56:34.168 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:56:38.669 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -19:56:39.111 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -19:56:39.701 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -19:56:39.701 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -19:56:39.701 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -19:56:39.701 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -19:56:39.702 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -19:56:39.702 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -19:56:39.702 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -19:56:39.702 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -19:56:39.702 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -19:56:39.702 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:56:39.702 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:56:39.704 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:56:39.705 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:56:39.706 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -19:56:39.712 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -19:56:39.713 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0 -19:56:39.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7edc0 -19:56:39.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7f1e0 -19:56:39.713 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -19:56:39.714 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -19:56:39.714 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:56:39.715 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:56:40.750 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726574202611_117.143.60.138_51003 -19:56:40.750 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:56:40.750 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Notify connected event to listeners. -19:56:40.750 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Connected,notify listen context... -19:56:40.750 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02cba186-fb7c-4de0-b9d5-ab70679bdccb_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8870 -19:56:41.317 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:56:41.317 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:56:41.317 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:56:41.322 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:56:41.327 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:56:41.327 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:56:45.154 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a4e55545-1b86-4295-9c95-e96ea584843e -19:56:45.156 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a4e55545-1b86-4295-9c95-e96ea584843e -19:56:45.156 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:56:45.156 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:56:45.157 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:56:45.157 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:56:45.158 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:56:47.034 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726574208030_117.143.60.138_51034 -19:56:47.034 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:56:47.034 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Notify connected event to listeners. -19:56:47.034 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8870 -19:56:47.034 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:56:47.035 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:56:47.175 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.39:8080 register finished -19:56:47.344 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:56:47.344 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:56:47.344 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:56:47.345 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:56:47.345 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:56:47.345 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:56:47.345 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:56:47.345 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:56:47.345 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:56:47.345 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:56:47.345 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:56:47.345 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:56:47.351 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:56:47.352 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:56:47.352 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:56:47.352 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:56:47.352 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:56:47.352 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:56:47.352 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:56:47.352 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:56:47.352 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:56:47.353 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:56:47.353 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:56:47.353 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:56:47.495 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.495 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.495 [boundedElastic-3] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.496 [boundedElastic-7] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.497 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.497 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.498 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.498 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.498 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.499 [boundedElastic-7] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.498 [boundedElastic-3] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.499 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.751 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16289 -19:56:47.752 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.752 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.753 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16289 -19:56:47.846 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -19:56:48.122 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16293 -19:56:48.122 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16293 -19:56:48.125 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16292 -19:56:48.125 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16292 -19:56:48.130 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16294 -19:56:48.131 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16294 -19:56:48.134 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16295 -19:56:48.135 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16295 -19:56:48.137 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16296 -19:56:48.137 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16296 -19:56:48.344 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 18.72 seconds (process running for 19.371) -19:56:48.347 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -19:56:48.347 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -19:56:48.347 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -19:56:48.348 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -19:56:48.348 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -19:56:48.348 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -19:56:48.350 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -19:56:48.350 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:56:48.350 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -19:57:17.760 [nacos-grpc-client-executor-47.116.173.119-65] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16301 -19:57:17.760 [nacos-grpc-client-executor-47.116.173.119-65] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:57:17.760 [nacos-grpc-client-executor-47.116.173.119-65] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:57:17.763 [nacos-grpc-client-executor-47.116.173.119-65] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16301 -19:57:18.429 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: -19:57:18.429 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: -19:57:18.429 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: -19:57:18.429 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: -19:57:18.503 [boundedElastic-12] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:57:18.503 [boundedElastic-12] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:57:19.013 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16304 -19:57:19.014 [nacos-grpc-client-executor-47.116.173.119-79] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16304 -19:59:46.871 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@11489c7e[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@79a64e87, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1546/0x00000008015e5e68@701a36b9, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=kZblaOAffP3CxrT6CuqSY7yAVD6riVBAPgyD1+YyPuVurk9NDxSfclBnRUcPDzBcJNxTOsbQm7CCQm3dWDK1lQ==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjM1M2NhZDY4LTlhOWItNGNhNy05M2ZhLWE1YWViMzAxOGZjYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQzODYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.PFcRywqCTtw0GKMiL1U6xpZoOoViRRlilMNnx4hpP08","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 11:59:46 GMT", connection:"close"] - 耗时/时间=11428MS-2024-09-17 19:59:35-2024-09-17 19:59:46 -]] -20:00:30.499 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@340b8a08[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@327f5175, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1546/0x00000008015e5e68@7dc80fa7, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=GSFAaG6guJ9s9OclEg/CAC9H1vmdK+RcovNRc9nwx+hXmiC2agV6svlsAG0Z3Z5yltCKyZO1YvzNj9ake/YnHg==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU0ZDU2NzU2LTZlMDAtNDRkMS04NWM4LTllMWU5YWMzMmQ0NCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ0MzAsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.GHxXIjAt6sDopgnTBxk3c6sl_TeV--cw--qP4ya9T7g","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:00:30 GMT", connection:"close"] - 耗时/时间=1246MS-2024-09-17 20:00:29-2024-09-17 20:00:30 -]] -20:00:44.328 [nacos-grpc-client-executor-47.116.173.119-170] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16369 -20:00:44.328 [nacos-grpc-client-executor-47.116.173.119-170] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:44.328 [nacos-grpc-client-executor-47.116.173.119-170] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:44.333 [nacos-grpc-client-executor-47.116.173.119-170] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16369 -20:00:46.653 [nacos-grpc-client-executor-47.116.173.119-171] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16372 -20:00:46.653 [nacos-grpc-client-executor-47.116.173.119-171] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:46.653 [nacos-grpc-client-executor-47.116.173.119-171] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:46.653 [nacos-grpc-client-executor-47.116.173.119-171] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16372 -20:00:47.554 [nacos-grpc-client-executor-47.116.173.119-172] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16376 -20:00:47.557 [nacos-grpc-client-executor-47.116.173.119-172] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:47.557 [nacos-grpc-client-executor-47.116.173.119-172] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:47.557 [nacos-grpc-client-executor-47.116.173.119-172] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16376 -20:01:11.532 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@10780a88[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-DELETE}:/auth/logout ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@6b14dcea, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1546/0x00000008015e5e68@6f5faa97, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=GSFAaG6guJ9s9OclEg/CAC9H1vmdK+RcovNRc9nwx+hXmiC2agV6svlsAG0Z3Z5yltCKyZO1YvzNj9ake/YnHg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU0ZDU2NzU2LTZlMDAtNDRkMS04NWM4LTllMWU5YWMzMmQ0NCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ0MzAsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.GHxXIjAt6sDopgnTBxk3c6sl_TeV--cw--qP4ya9T7g; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU0ZDU2NzU2LTZlMDAtNDRkMS04NWM4LTllMWU5YWMzMmQ0NCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ0MzAsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.GHxXIjAt6sDopgnTBxk3c6sl_TeV--cw--qP4ya9T7g", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:01:11 GMT", connection:"close"] - 耗时/时间=10063MS-2024-09-17 20:01:01-2024-09-17 20:01:11 -]] -20:01:22.278 [nacos-grpc-client-executor-47.116.173.119-191] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16380 -20:01:22.278 [nacos-grpc-client-executor-47.116.173.119-191] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:22.278 [nacos-grpc-client-executor-47.116.173.119-191] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:22.278 [nacos-grpc-client-executor-47.116.173.119-191] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16380 -20:01:27.240 [nacos-grpc-client-executor-47.116.173.119-192] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16383 -20:01:27.240 [nacos-grpc-client-executor-47.116.173.119-192] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:27.240 [nacos-grpc-client-executor-47.116.173.119-192] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:27.240 [nacos-grpc-client-executor-47.116.173.119-192] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16383 -20:01:28.442 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@30732cce[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-DELETE}:/auth/logout ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@21464832, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1546/0x00000008015e5e68@6d15c64e, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; password=GSFAaG6guJ9s9OclEg/CAC9H1vmdK+RcovNRc9nwx+hXmiC2agV6svlsAG0Z3Z5yltCKyZO1YvzNj9ake/YnHg==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU0ZDU2NzU2LTZlMDAtNDRkMS04NWM4LTllMWU5YWMzMmQ0NCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ0MzAsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.GHxXIjAt6sDopgnTBxk3c6sl_TeV--cw--qP4ya9T7g; Admin-Expires-In=720", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjU0ZDU2NzU2LTZlMDAtNDRkMS04NWM4LTllMWU5YWMzMmQ0NCIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ0MzAsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.GHxXIjAt6sDopgnTBxk3c6sl_TeV--cw--qP4ya9T7g", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:01:28 GMT", connection:"close"] - 耗时/时间=1401MS-2024-09-17 20:01:27-2024-09-17 20:01:28 -]] -20:01:35.112 [nacos-grpc-client-executor-47.116.173.119-194] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16387 -20:01:35.112 [nacos-grpc-client-executor-47.116.173.119-194] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:35.112 [nacos-grpc-client-executor-47.116.173.119-194] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:35.112 [nacos-grpc-client-executor-47.116.173.119-194] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16387 -20:01:45.004 [nacos-grpc-client-executor-47.116.173.119-197] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16399 -20:01:45.004 [nacos-grpc-client-executor-47.116.173.119-197] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:45.004 [nacos-grpc-client-executor-47.116.173.119-197] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:45.004 [nacos-grpc-client-executor-47.116.173.119-197] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16399 -20:01:47.532 [nacos-grpc-client-executor-47.116.173.119-198] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16409 -20:01:47.532 [nacos-grpc-client-executor-47.116.173.119-198] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:47.532 [nacos-grpc-client-executor-47.116.173.119-198] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:47.536 [nacos-grpc-client-executor-47.116.173.119-198] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16409 -20:01:57.545 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7c02ec48[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@21464832, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1546/0x00000008015e5e68@6d15c64e, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=JN/9wulX1zHNWsOpT9OL3QZYvjTvHZDWaSpKWXm3+AYTWlLHdj1mg0UrGaARVSh7jdY5Kldhw7eZjdvwvvaLGQ==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":500,"msg":"登录用户:admin 不存在","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:01:57 GMT", connection:"close"] - 耗时/时间=10309MS-2024-09-17 20:01:47-2024-09-17 20:01:57 -]] -20:02:09.016 [nacos-grpc-client-executor-47.116.173.119-209] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16420 -20:02:09.016 [nacos-grpc-client-executor-47.116.173.119-209] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:09.016 [nacos-grpc-client-executor-47.116.173.119-209] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:09.016 [nacos-grpc-client-executor-47.116.173.119-209] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16420 -20:02:11.029 [nacos-grpc-client-executor-47.116.173.119-210] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16425 -20:02:11.029 [nacos-grpc-client-executor-47.116.173.119-210] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:11.029 [nacos-grpc-client-executor-47.116.173.119-210] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:11.029 [nacos-grpc-client-executor-47.116.173.119-210] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16425 -20:02:14.311 [nacos-grpc-client-executor-47.116.173.119-212] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16429 -20:02:14.311 [nacos-grpc-client-executor-47.116.173.119-212] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:14.311 [nacos-grpc-client-executor-47.116.173.119-212] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:14.314 [nacos-grpc-client-executor-47.116.173.119-212] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16429 -20:02:15.602 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@50f54eca[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@4b8849ed, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1546/0x00000008015e5e68@3bf8125a, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:02:16 GMT", connection:"close"] - 耗时/时间=575MS-2024-09-17 20:02:15-2024-09-17 20:02:15 -]] -20:02:15.881 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@132a02f5[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:02:15 GMT", connection:"close"] - 耗时/时间=254MS-2024-09-17 20:02:15-2024-09-17 20:02:15 -]] -20:02:16.260 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6055429b[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:02:16 GMT", connection:"close"] - 耗时/时间=58MS-2024-09-17 20:02:16-2024-09-17 20:02:16 -]] -20:02:21.156 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@74da4b3d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:02:21 GMT", connection:"close"] - 耗时/时间=958MS-2024-09-17 20:02:20-2024-09-17 20:02:21 -]] -20:02:26.210 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6c864b56[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/data/type/sys_show_hide ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"显示菜单","params":{"@type":"java.util.HashMap"},"dictCode":4,"dictSort":1,"dictLabel":"显示","dictValue":"0","dictType":"sys_show_hide","cssClass":"","listClass":"primary","isDefault":"Y","status":"0","default":true},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"隐藏菜单","params":{"@type":"java.util.HashMap"},"dictCode":5,"dictSort":2,"dictLabel":"隐藏","dictValue":"1","dictType":"sys_show_hide","cssClass":"","listClass":"danger","isDefault":"N","status":"0","default":false}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:02:26 GMT", connection:"close"] - 耗时/时间=41MS-2024-09-17 20:02:26-2024-09-17 20:02:26 -]] -20:02:26.210 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@523823c6[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/data/type/sys_normal_disable ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"正常状态","params":{"@type":"java.util.HashMap"},"dictCode":6,"dictSort":1,"dictLabel":"正常","dictValue":"0","dictType":"sys_normal_disable","cssClass":"","listClass":"primary","isDefault":"Y","status":"0","default":true},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"停用状态","params":{"@type":"java.util.HashMap"},"dictCode":7,"dictSort":2,"dictLabel":"停用","dictValue":"1","dictType":"sys_normal_disable","cssClass":"","listClass":"danger","isDefault":"N","status":"0","default":false}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:02:26 GMT", connection:"close"] - 耗时/时间=41MS-2024-09-17 20:02:26-2024-09-17 20:02:26 -]] -20:02:26.235 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@31d48268[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:02:26 GMT", connection:"close"] - 耗时/时间=66MS-2024-09-17 20:02:26-2024-09-17 20:02:26 -]] -20:02:40.240 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@ab6638e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:02:40 GMT", connection:"close"] - 耗时/时间=36MS-2024-09-17 20:02:40-2024-09-17 20:02:40 -]] -20:03:38.680 [nacos-grpc-client-executor-47.116.173.119-251] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16435 -20:03:38.680 [nacos-grpc-client-executor-47.116.173.119-251] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:03:38.680 [nacos-grpc-client-executor-47.116.173.119-251] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:03:38.680 [nacos-grpc-client-executor-47.116.173.119-251] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16435 -20:05:22.352 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@331a256e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/system/menu ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体={"parentId":0,"menuName":"车辆管理","icon":"list","menuType":"M","orderNum":5,"isFrame":"1","isCache":"0","visible":"0","status":"0","path":"car/car"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:21 GMT", connection:"close"] - 耗时/时间=188MS-2024-09-17 20:05:22-2024-09-17 20:05:22 -]] -20:05:22.512 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5b15bb17[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car/car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:22 GMT", connection:"close"] - 耗时/时间=81MS-2024-09-17 20:05:22-2024-09-17 20:05:22 -]] -20:05:29.314 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@280ad479[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/3 ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:29 GMT", connection:"close"] - 耗时/时间=46MS-2024-09-17 20:05:29-2024-09-17 20:05:29 -]] -20:05:29.773 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@62416e74[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car/car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:30 GMT", connection:"close"] - 耗时/时间=157MS-2024-09-17 20:05:29-2024-09-17 20:05:29 -]] -20:05:41.825 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6ec753d0[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car/car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:41 GMT", connection:"close"] - 耗时/时间=44MS-2024-09-17 20:05:41-2024-09-17 20:05:41 -]] -20:05:41.844 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@367e8c7f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/2000 ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car/car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:42 GMT", connection:"close"] - 耗时/时间=66MS-2024-09-17 20:05:41-2024-09-17 20:05:41 -]] -20:05:46.556 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4e4675c1[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-PUT}:/system/menu ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体={"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:46 GMT", connection:"close"] - 耗时/时间=98MS-2024-09-17 20:05:46-2024-09-17 20:05:46 -]] -20:05:46.954 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3452f715[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:47 GMT", connection:"close"] - 耗时/时间=54MS-2024-09-17 20:05:46-2024-09-17 20:05:46 -]] -20:05:48.516 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7d13dba[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:48 GMT", connection:"close"] - 耗时/时间=75MS-2024-09-17 20:05:48-2024-09-17 20:05:48 -]] -20:05:48.793 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5237d109[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/3 ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:49 GMT", connection:"close"] - 耗时/时间=31MS-2024-09-17 20:05:48-2024-09-17 20:05:48 -]] -20:05:52.259 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@51cf105[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:52 GMT", connection:"close"] - 耗时/时间=173MS-2024-09-17 20:05:52-2024-09-17 20:05:52 -]] -20:05:52.274 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6263af64[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/2000 ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:52 GMT", connection:"close"] - 耗时/时间=188MS-2024-09-17 20:05:52-2024-09-17 20:05:52 -]] -20:05:53.095 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@32767dbf[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:52 GMT", connection:"close"] - 耗时/时间=79MS-2024-09-17 20:05:53-2024-09-17 20:05:53 -]] -20:05:53.348 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2605b613[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/2000 ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:05:53 GMT", connection:"close"] - 耗时/时间=31MS-2024-09-17 20:05:53-2024-09-17 20:05:53 -]] -20:06:02.754 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6a9f80b4[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:06:02 GMT", connection:"close"] - 耗时/时间=65MS-2024-09-17 20:06:02-2024-09-17 20:06:02 -]] -20:06:02.870 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4b94ea11[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"component":"Layout","meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null}}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:06:03 GMT", connection:"close"] - 耗时/时间=68MS-2024-09-17 20:06:02-2024-09-17 20:06:02 -]] -20:06:03.132 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5da8ccc3[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/data/type/sys_show_hide ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"显示菜单","params":{"@type":"java.util.HashMap"},"dictCode":4,"dictSort":1,"dictLabel":"显示","dictValue":"0","dictType":"sys_show_hide","cssClass":"","listClass":"primary","isDefault":"Y","status":"0","default":true},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"隐藏菜单","params":{"@type":"java.util.HashMap"},"dictCode":5,"dictSort":2,"dictLabel":"隐藏","dictValue":"1","dictType":"sys_show_hide","cssClass":"","listClass":"danger","isDefault":"N","status":"0","default":false}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:06:02 GMT", connection:"close"] - 耗时/时间=39MS-2024-09-17 20:06:03-2024-09-17 20:06:03 -]] -20:06:03.420 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5b51760f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:06:02 GMT", connection:"close"] - 耗时/时间=29MS-2024-09-17 20:06:03-2024-09-17 20:06:03 -]] -20:06:03.439 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7deb1584[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/data/type/sys_normal_disable ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"正常状态","params":{"@type":"java.util.HashMap"},"dictCode":6,"dictSort":1,"dictLabel":"正常","dictValue":"0","dictType":"sys_normal_disable","cssClass":"","listClass":"primary","isDefault":"Y","status":"0","default":true},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"停用状态","params":{"@type":"java.util.HashMap"},"dictCode":7,"dictSort":2,"dictLabel":"停用","dictValue":"1","dictType":"sys_normal_disable","cssClass":"","listClass":"danger","isDefault":"N","status":"0","default":false}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:06:03 GMT", connection:"close"] - 耗时/时间=51MS-2024-09-17 20:06:03-2024-09-17 20:06:03 -]] -20:08:06.443 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4657ca7c[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:08:06 GMT", connection:"close"] - 耗时/时间=46MS-2024-09-17 20:08:06-2024-09-17 20:08:06 -]] -20:08:06.443 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3d101217[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/114 ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:08:06 GMT", connection:"close"] - 耗时/时间=62MS-2024-09-17 20:08:06-2024-09-17 20:08:06 -]] -20:08:35.214 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3f97452f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:08:35 GMT", connection:"close"] - 耗时/时间=41MS-2024-09-17 20:08:35-2024-09-17 20:08:35 -]] -20:08:35.506 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@34b758df[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/2000 ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:08:35 GMT", connection:"close"] - 耗时/时间=46MS-2024-09-17 20:08:35-2024-09-17 20:08:35 -]] -20:08:38.261 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3bf08005[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:08:38 GMT", connection:"close"] - 耗时/时间=52MS-2024-09-17 20:08:38-2024-09-17 20:08:38 -]] -20:08:50.459 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-warn, group:DEFAULT_GROUP, clusters: -20:08:50.459 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-warn, group:DEFAULT_GROUP, cluster: -20:08:50.459 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-warn, group:DEFAULT_GROUP, clusters: -20:08:50.459 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-warn, group:DEFAULT_GROUP, cluster: -20:08:50.507 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-warn, group:DEFAULT_GROUP, clusters: -20:08:50.507 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-warn, group:DEFAULT_GROUP, cluster: -20:08:50.514 [boundedElastic-5] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-warn -> [] -20:08:50.514 [boundedElastic-5] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-warn -> [] -20:08:51.106 [nacos-grpc-client-executor-47.116.173.119-381] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 16517 -20:08:51.106 [nacos-grpc-client-executor-47.116.173.119-381] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 16517 -20:10:55.973 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@aa38c4d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/system/menu ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体={"parentId":2000,"menuName":"车辆","icon":"shopping","menuType":"C","orderNum":1,"isFrame":"1","isCache":"0","visible":"0","status":"0","path":"car","component":"car/car/index","perms":"car:car:list"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:10:55 GMT", connection:"close"] - 耗时/时间=94MS-2024-09-17 20:10:55-2024-09-17 20:10:55 -]] -20:10:56.362 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2adaf513[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:10:56 GMT", connection:"close"] - 耗时/时间=124MS-2024-09-17 20:10:56-2024-09-17 20:10:56 -]] -20:10:58.871 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@27e7de34[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:10:58 GMT", connection:"close"] - 耗时/时间=53MS-2024-09-17 20:10:58-2024-09-17 20:10:58 -]] -20:10:58.950 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4c6acba7[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:10:59 GMT", connection:"close"] - 耗时/时间=58MS-2024-09-17 20:10:58-2024-09-17 20:10:58 -]] -20:10:59.398 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@17a8b234[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/data/type/sys_normal_disable ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"正常状态","params":{"@type":"java.util.HashMap"},"dictCode":6,"dictSort":1,"dictLabel":"正常","dictValue":"0","dictType":"sys_normal_disable","cssClass":"","listClass":"primary","isDefault":"Y","status":"0","default":true},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"停用状态","params":{"@type":"java.util.HashMap"},"dictCode":7,"dictSort":2,"dictLabel":"停用","dictValue":"1","dictType":"sys_normal_disable","cssClass":"","listClass":"danger","isDefault":"N","status":"0","default":false}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:10:59 GMT", connection:"close"] - 耗时/时间=56MS-2024-09-17 20:10:59-2024-09-17 20:10:59 -]] -20:10:59.421 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@61dba945[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/data/type/sys_show_hide ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"显示菜单","params":{"@type":"java.util.HashMap"},"dictCode":4,"dictSort":1,"dictLabel":"显示","dictValue":"0","dictType":"sys_show_hide","cssClass":"","listClass":"primary","isDefault":"Y","status":"0","default":true},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"隐藏菜单","params":{"@type":"java.util.HashMap"},"dictCode":5,"dictSort":2,"dictLabel":"隐藏","dictValue":"1","dictType":"sys_show_hide","cssClass":"","listClass":"danger","isDefault":"N","status":"0","default":false}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:10:58 GMT", connection:"close"] - 耗时/时间=93MS-2024-09-17 20:10:59-2024-09-17 20:10:59 -]] -20:10:59.667 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4d45ba88[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/system/menu", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:10:58 GMT", connection:"close"] - 耗时/时间=40MS-2024-09-17 20:10:59-2024-09-17 20:10:59 -]] -20:11:02.729 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@42c95d40[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/car/list ---> 200 OK +09:23:32.294 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@410076e1[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/car/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":0,"rows":[],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:11:01 GMT", connection:"close"] - 耗时/时间=892MS-2024-09-17 20:11:01-2024-09-17 20:11:02 -]] -20:12:15.245 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@65c6d1b6[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"tableId":8,"dbName":"one","tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:12:15 GMT", connection:"close"] - 耗时/时间=191MS-2024-09-17 20:12:15-2024-09-17 20:12:15 -]] -20:12:16.150 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@35e576db[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":18,"rows":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_corpuscle_fence","tableComment":"电子围栏表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_fence_group_mid","tableComment":"围栏组连接表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_fence_group","tableComment":"围栏组表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:12:16 GMT", connection:"close"] - 耗时/时间=214MS-2024-09-17 20:12:15-2024-09-17 20:12:16 -]] -20:12:16.374 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@782e928d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"e83fbf45-d57a-48e5-96fb-99d65124996b", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["2112MCC","car_seven","eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:12:16 GMT", connection:"close"] - 耗时/时间=125MS-2024-09-17 20:12:16-2024-09-17 20:12:16 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"fenceCode":null,"fenceName":null,"fenceType":null,"fencePosition":null,"state":null},{"id":4,"fenceCode":null,"fenceName":null,"fenceType":null,"fencePosition":null,"state":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:23:32 GMT", connection:"close"] + 耗时/时间=687MS-2024-09-23 09:23:31-2024-09-23 09:23:32 ]] -20:33:15.262 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5b1ae2b4[ +09:23:40.138 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5a297a60[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} + 查询参数={} + 请求体= + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:23:40 GMT", connection:"close"] + 耗时/时间=362MS-2024-09-23 09:23:39-2024-09-23 09:23:40 +]] +09:23:45.160 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:23:54.286 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@58b9640c[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} + 查询参数={} + 请求体= + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:23:54 GMT", connection:"close"] + 耗时/时间=98MS-2024-09-23 09:23:54-2024-09-23 09:23:54 +]] +09:24:05.046 [boundedElastic-20] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:24:25.050 [boundedElastic-21] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:24:45.103 [boundedElastic-15] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:25:05.245 [boundedElastic-9] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:25:25.168 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:25:45.234 [boundedElastic-7] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:26:05.037 [boundedElastic-4] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:26:05.608 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@60068563[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} + 查询参数={} + 请求体= + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"fenceCode":null,"fenceName":null,"fenceType":null,"fencePosition":null,"state":null},{"id":4,"fenceCode":null,"fenceName":null,"fenceType":null,"fencePosition":null,"state":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:26:05 GMT", connection:"close"] + 耗时/时间=99MS-2024-09-23 09:26:05-2024-09-23 09:26:05 +]] +09:26:17.564 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4e81aa9f[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} + 查询参数={} + 请求体= + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:26:17 GMT", connection:"close"] + 耗时/时间=76MS-2024-09-23 09:26:17-2024-09-23 09:26:17 +]] +09:26:25.167 [boundedElastic-17] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:26:45.046 [boundedElastic-21] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:27:00.038 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@282e55da[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} + 查询参数={} + 请求体= + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:27:00 GMT", connection:"close"] + 耗时/时间=254MS-2024-09-23 09:26:59-2024-09-23 09:27:00 +]] +09:27:03.471 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@406a7b5b[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} + 查询参数={} + 请求体= + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"19df3db2-ca0c-4fa7-becf-7668c8541fc3", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"fenceCode":null,"fenceName":null,"fenceType":null,"fencePosition":null,"state":null},{"id":4,"fenceCode":null,"fenceName":null,"fenceType":null,"fencePosition":null,"state":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:27:03 GMT", connection:"close"] + 耗时/时间=710MS-2024-09-23 09:27:02-2024-09-23 09:27:03 +]] +09:27:05.207 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:27:25.051 [boundedElastic-22] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:27:45.157 [boundedElastic-24] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:28:05.068 [boundedElastic-23] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:28:25.077 [boundedElastic-24] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:28:45.045 [boundedElastic-22] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:29:05.034 [boundedElastic-17] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:29:25.052 [boundedElastic-25] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:29:45.039 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:29:51.384 [nacos-grpc-client-executor-110.42.213.184-431] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3668 +09:29:51.384 [nacos-grpc-client-executor-110.42.213.184-431] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:29:51.384 [nacos-grpc-client-executor-110.42.213.184-431] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:29:51.385 [nacos-grpc-client-executor-110.42.213.184-431] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3668 +09:30:05.440 [boundedElastic-17] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:30:15.975 [nacos-grpc-client-executor-110.42.213.184-443] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3670 +09:30:15.975 [nacos-grpc-client-executor-110.42.213.184-443] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:30:15.976 [nacos-grpc-client-executor-110.42.213.184-443] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:30:15.977 [nacos-grpc-client-executor-110.42.213.184-443] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3670 +09:30:25.059 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:30:45.044 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:30:50.805 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@73bbacc1[ 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-DELETE}:/auth/logout ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@112416ab, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1546/0x00000008015e5e68@6d1e1c72, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} + 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@43fd7dc4, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1565/0x000001f2c98af100@5aa7cd01, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=aIOV+YPhO31Guz1v3KbuU9Uqn5s3pJyorqxPeSl/66OuMWycvXO5BadoiHzpGRz7+FOI4AMXu2gijjCDa5R/tQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImU4M2ZiZjQ1LWQ1N2EtNDhlNS05NmZiLTk5ZDY1MTI0OTk2YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzQ1MzYsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.WJaZqtzVo5fT30ty7BpHeuhqPn-ogaKndrcaRsNyQqE", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080"] + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; password=pA43+Fq3pdBKY3ylXE+XUSZHMUdzWuYqkL8P9ht71XfQVVYqZjqYBaSSzz7ozBiKALNkGoVih0GW8G6LXXjXnA==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM; Admin-Expires-In=720; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjE5ZGYzZGIyLWNhMGMtNGZhNy1iZWNmLTc2NjhjODU0MWZjMyIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTM3MTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.iBuP0RgOYxGQ8_yfB6s0sotejP_oXYiJlIl4o7H3jzM", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080"] 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:15 GMT", connection:"close"] - 耗时/时间=235MS-2024-09-17 20:33:15-2024-09-17 20:33:15 + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:30:50 GMT", connection:"close"] + 耗时/时间=568MS-2024-09-23 09:30:50-2024-09-23 09:30:50 ]] -20:33:17.985 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4d591ebe[ +09:30:52.900 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@24eab380[ 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@112416ab, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1546/0x00000008015e5e68@6d1e1c72, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} + 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@1577e157, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1565/0x000001f2c98af100@fa2c087, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} 查询参数={} 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:18 GMT", connection:"close"] - 耗时/时间=337MS-2024-09-17 20:33:17-2024-09-17 20:33:17 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", istoken:"false", content-type:"application/json;charset=UTF-8", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", repeatsubmit:"false", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] + 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI","expires_in":720}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:30:52 GMT", connection:"close"] + 耗时/时间=384MS-2024-09-23 09:30:52-2024-09-23 09:30:52 ]] -20:33:18.642 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@268989db[ +09:30:54.171 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4c5f3ae[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:18 GMT", connection:"close"] - 耗时/时间=145MS-2024-09-17 20:33:18-2024-09-17 20:33:18 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:30:54 GMT", connection:"close"] + 耗时/时间=819MS-2024-09-23 09:30:53-2024-09-23 09:30:54 ]] -20:33:18.806 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@26ae96bb[ +09:30:54.325 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@52405d37[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:17 GMT", connection:"close"] - 耗时/时间=104MS-2024-09-17 20:33:18-2024-09-17 20:33:18 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:30:54 GMT", connection:"close"] + 耗时/时间=48MS-2024-09-23 09:30:54-2024-09-23 09:30:54 ]] -20:33:22.176 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@60f0efb0[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:22 GMT", connection:"close"] - 耗时/时间=491MS-2024-09-17 20:33:21-2024-09-17 20:33:22 -]] -20:33:23.176 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@38b2617b[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:31:05.130 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:31:09.994 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@75de5df0[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["2112MCC","car_seven","eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:23 GMT", connection:"close"] - 耗时/时间=121MS-2024-09-17 20:33:23-2024-09-17 20:33:23 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:31:09 GMT", connection:"close"] + 耗时/时间=1083MS-2024-09-23 09:31:08-2024-09-23 09:31:09 ]] -20:33:23.276 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@e2a9c92[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":18,"rows":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_corpuscle_fence","tableComment":"电子围栏表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_fence_group_mid","tableComment":"围栏组连接表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_fence_group","tableComment":"围栏组表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_post","tableComment":"岗位信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:13","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:23 GMT", connection:"close"] - 耗时/时间=208MS-2024-09-17 20:33:23-2024-09-17 20:33:23 -]] -20:33:35.702 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@725b6598[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:31:23.527 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5559ac81[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:35 GMT", connection:"close"] - 耗时/时间=35MS-2024-09-17 20:33:35-2024-09-17 20:33:35 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":500,"msg":"Invalid bound statement (not found): com.muyu.carrail.mapper.SysCorpuscleMapper.selectCarRail","data":null} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:31:23 GMT", connection:"close"] + 耗时/时间=64MS-2024-09-23 09:31:23-2024-09-23 09:31:23 ]] -20:33:35.743 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3633648d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:36 GMT", connection:"close"] - 耗时/时间=70MS-2024-09-17 20:33:35-2024-09-17 20:33:35 -]] -20:33:35.826 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2013ca4c[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmProfession"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmScale"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmName"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLogs"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmPhone"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEmail"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmWebsite"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmAddress"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmDesc"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"UserId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"RoleId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:35 GMT", connection:"close"] - 耗时/时间=158MS-2024-09-17 20:33:35-2024-09-17 20:33:35 -]] -20:33:38.129 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@549f5312[ +09:31:25.300 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:31:35.002 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4c66ee81[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:38 GMT", connection:"close"] - 耗时/时间=312MS-2024-09-17 20:33:37-2024-09-17 20:33:38 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:31:35 GMT", connection:"close"] + 耗时/时间=112MS-2024-09-23 09:31:34-2024-09-23 09:31:35 ]] -20:33:38.513 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@70f3eae[ +09:31:35.240 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@485a8b73[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:38 GMT", connection:"close"] - 耗时/时间=343MS-2024-09-17 20:33:38-2024-09-17 20:33:38 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:31:35 GMT", connection:"close"] + 耗时/时间=196MS-2024-09-23 09:31:35-2024-09-23 09:31:35 ]] -20:33:39.059 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1834346f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:31:36.535 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4476d80e[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmProfession","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmScale","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmName","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLogs","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmPhone","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEmail","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmWebsite","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmAddress","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UserId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"RoleId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:39 GMT", connection:"close"] - 耗时/时间=314MS-2024-09-17 20:33:38-2024-09-17 20:33:39 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":500,"msg":"Invalid bound statement (not found): com.muyu.carrail.mapper.SysCorpuscleMapper.selectCarRail","data":null} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:31:36 GMT", connection:"close"] + 耗时/时间=484MS-2024-09-23 09:31:36-2024-09-23 09:31:36 ]] -20:33:39.205 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@a7752b3[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:39 GMT", connection:"close"] - 耗时/时间=58MS-2024-09-17 20:33:39-2024-09-17 20:33:39 -]] -20:33:39.427 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@26e5c082[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:38 GMT", connection:"close"] - 耗时/时间=279MS-2024-09-17 20:33:39-2024-09-17 20:33:39 -]] -20:33:43.920 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@10951fca[ +09:31:45.069 [boundedElastic-24] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:32:05.136 [boundedElastic-25] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:32:10.121 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@48f4a841[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:44 GMT", connection:"close"] - 耗时/时间=194MS-2024-09-17 20:33:43-2024-09-17 20:33:43 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:32:10 GMT", connection:"close"] + 耗时/时间=407MS-2024-09-23 09:32:09-2024-09-23 09:32:10 ]] -20:33:43.946 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@234e8fec[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:43 GMT", connection:"close"] - 耗时/时间=109MS-2024-09-17 20:33:43-2024-09-17 20:33:43 -]] -20:33:44.302 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@382cdaeb[ +09:32:11.587 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@45480f0e[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:44 GMT", connection:"close"] - 耗时/时间=218MS-2024-09-17 20:33:44-2024-09-17 20:33:44 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:32:11 GMT", connection:"close"] + 耗时/时间=865MS-2024-09-23 09:32:10-2024-09-23 09:32:11 ]] -20:33:44.544 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@52070fad[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:32:12.716 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3cfc6906[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:43 GMT", connection:"close"] - 耗时/时间=101MS-2024-09-17 20:33:44-2024-09-17 20:33:44 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":500,"msg":"Invalid bound statement (not found): com.muyu.carrail.mapper.SysCorpuscleMapper.selectCarRail","data":null} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:32:12 GMT", connection:"close"] + 耗时/时间=210MS-2024-09-23 09:32:12-2024-09-23 09:32:12 ]] -20:33:44.948 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1a195d8[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmProfession"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmScale"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmName"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLogs"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmPhone"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEmail"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmWebsite"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmAddress"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmDesc"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"UserId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"RoleId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:44 GMT", connection:"close"] - 耗时/时间=514MS-2024-09-17 20:33:44-2024-09-17 20:33:44 -]] -20:33:45.141 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@369cecb8[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:45 GMT", connection:"close"] - 耗时/时间=309MS-2024-09-17 20:33:44-2024-09-17 20:33:45 -]] -20:33:46.642 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2a75d2dc[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576425582&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:47 GMT", connection:"close"] - 耗时/时间=74MS-2024-09-17 20:33:46-2024-09-17 20:33:46 -]] -20:33:46.726 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@48d4f100[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576425582&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"tableId":8,"dbName":"one","tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:46 GMT", connection:"close"] - 耗时/时间=67MS-2024-09-17 20:33:46-2024-09-17 20:33:46 -]] -20:33:49.709 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@49a240c0[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:49 GMT", connection:"close"] - 耗时/时间=113MS-2024-09-17 20:33:49-2024-09-17 20:33:49 -]] -20:33:49.711 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@28340084[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:50 GMT", connection:"close"] - 耗时/时间=117MS-2024-09-17 20:33:49-2024-09-17 20:33:49 -]] -20:33:49.970 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@52c128c0[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/7 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmProfession","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmScale","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmName","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLogs","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmPhone","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEmail","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmWebsite","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmAddress","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UserId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"RoleId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:50 GMT", connection:"close"] - 耗时/时间=360MS-2024-09-17 20:33:49-2024-09-17 20:33:49 -]] -20:33:50.313 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6924dcbb[ +09:32:25.047 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:32:45.088 [boundedElastic-25] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:33:05.158 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:33:15.376 [nacos-grpc-client-executor-110.42.213.184-517] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3673 +09:33:15.376 [nacos-grpc-client-executor-110.42.213.184-517] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:33:15.376 [nacos-grpc-client-executor-110.42.213.184-517] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:33:15.378 [nacos-grpc-client-executor-110.42.213.184-517] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3673 +09:33:25.044 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:33:36.425 [nacos-grpc-client-executor-110.42.213.184-521] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3675 +09:33:36.426 [nacos-grpc-client-executor-110.42.213.184-521] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:33:36.426 [nacos-grpc-client-executor-110.42.213.184-521] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:33:36.427 [nacos-grpc-client-executor-110.42.213.184-521] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3675 +09:33:45.077 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:33:47.387 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@13cfb02c[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:49 GMT", connection:"close"] - 耗时/时间=38MS-2024-09-17 20:33:50-2024-09-17 20:33:50 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:33:47 GMT", connection:"close"] + 耗时/时间=116MS-2024-09-23 09:33:47-2024-09-23 09:33:47 ]] -20:33:50.618 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4342e355[ +09:33:47.545 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7b088ac7[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:50 GMT", connection:"close"] - 耗时/时间=63MS-2024-09-17 20:33:50-2024-09-17 20:33:50 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:33:47 GMT", connection:"close"] + 耗时/时间=72MS-2024-09-23 09:33:47-2024-09-23 09:33:47 ]] -20:33:50.898 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@126903b8[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:33:49.200 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4ae4007d[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:50 GMT", connection:"close"] - 耗时/时间=159MS-2024-09-17 20:33:50-2024-09-17 20:33:50 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; sidebarStatus=0; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"id":1,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":2,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"},{"id":3,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":4,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:33:49 GMT", connection:"close"] + 耗时/时间=1102MS-2024-09-23 09:33:48-2024-09-23 09:33:49 ]] -20:33:51.004 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@65c7681[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/7 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:34:05.306 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:34:05.971 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1af11d7b[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmProfession"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmScale"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmName"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLogs"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmPhone"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEmail"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmWebsite"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmAddress"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmDesc"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"UserId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"RoleId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":"admin","createTime":"2024-09-17 08:32:54","updateBy":"","updateTime":"2024-09-17 08:33:47","remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:51 GMT", connection:"close"] - 耗时/时间=265MS-2024-09-17 20:33:50-2024-09-17 20:33:51 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:34:05 GMT", connection:"close"] + 耗时/时间=199MS-2024-09-23 09:34:05-2024-09-23 09:34:05 ]] -20:33:51.169 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2e1aab6[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:34:25.111 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:34:45.056 [boundedElastic-25] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:35:05.151 [boundedElastic-32] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:35:25.131 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:35:45.062 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:36:05.065 [boundedElastic-31] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:36:25.120 [boundedElastic-25] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:36:45.097 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:37:05.038 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:37:25.102 [boundedElastic-5] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:37:32.438 [nacos-grpc-client-executor-110.42.213.184-615] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3677 +09:37:32.439 [nacos-grpc-client-executor-110.42.213.184-615] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:37:32.439 [nacos-grpc-client-executor-110.42.213.184-615] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:37:32.440 [nacos-grpc-client-executor-110.42.213.184-615] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3677 +09:37:45.036 [boundedElastic-32] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:37:55.852 [nacos-grpc-client-executor-110.42.213.184-625] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3679 +09:37:55.853 [nacos-grpc-client-executor-110.42.213.184-625] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:37:55.853 [nacos-grpc-client-executor-110.42.213.184-625] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:37:55.854 [nacos-grpc-client-executor-110.42.213.184-625] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3679 +09:38:05.164 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:38:25.065 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:38:45.122 [boundedElastic-33] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:39:05.061 [boundedElastic-31] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:39:25.173 [boundedElastic-33] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:39:45.054 [boundedElastic-36] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:40:05.083 [boundedElastic-37] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:40:25.212 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:40:39.611 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@73a7e9a7[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/7?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:51 GMT", connection:"close"] - 耗时/时间=105MS-2024-09-17 20:33:51-2024-09-17 20:33:51 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":500,"msg":"\r\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\r\n### The error may exist in com/muyu/carrail/mapper/SysFenceMapper.java (best guess)\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: SELECT id,group_code,group_name,group_type,state,create_by,create_time,update_by,update_time,remark,sysfindname FROM sys_fence_group LIMIT ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\n; bad SQL grammar []","data":null} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:40:39 GMT", connection:"close"] + 耗时/时间=845MS-2024-09-23 09:40:38-2024-09-23 09:40:39 ]] -20:33:53.142 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6599d89d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576425582&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:53 GMT", connection:"close"] - 耗时/时间=121MS-2024-09-17 20:33:53-2024-09-17 20:33:53 -]] -20:33:53.276 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4fb5ecd3[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576425582&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"tableId":8,"dbName":"one","tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:53 GMT", connection:"close"] - 耗时/时间=110MS-2024-09-17 20:33:53-2024-09-17 20:33:53 -]] -20:33:55.910 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2c117b26[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:55 GMT", connection:"close"] - 耗时/时间=142MS-2024-09-17 20:33:55-2024-09-17 20:33:55 -]] -20:33:55.997 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@56920bf[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:56 GMT", connection:"close"] - 耗时/时间=210MS-2024-09-17 20:33:55-2024-09-17 20:33:55 -]] -20:33:56.114 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@415c741a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmProfession","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmScale","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmName","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLogs","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmPhone","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEmail","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmWebsite","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmAddress","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UserId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"RoleId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:56 GMT", connection:"close"] - 耗时/时间=321MS-2024-09-17 20:33:55-2024-09-17 20:33:56 -]] -20:33:56.337 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3651b7a3[ +09:40:41.602 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2bd3fa52[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:55 GMT", connection:"close"] - 耗时/时间=56MS-2024-09-17 20:33:56-2024-09-17 20:33:56 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:40:41 GMT", connection:"close"] + 耗时/时间=75MS-2024-09-23 09:40:41-2024-09-23 09:40:41 ]] -20:33:56.543 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1c172bae[ +09:40:41.693 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3a48db95[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:56 GMT", connection:"close"] - 耗时/时间=42MS-2024-09-17 20:33:56-2024-09-17 20:33:56 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:40:41 GMT", connection:"close"] + 耗时/时间=54MS-2024-09-23 09:40:41-2024-09-23 09:40:41 ]] -20:33:56.745 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@53adc360[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:40:42.582 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@27cc4e66[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:55 GMT", connection:"close"] - 耗时/时间=75MS-2024-09-17 20:33:56-2024-09-17 20:33:56 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":500,"msg":"\r\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\r\n### The error may exist in com/muyu/carrail/mapper/SysFenceMapper.java (best guess)\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: SELECT id,group_code,group_name,group_type,state,create_by,create_time,update_by,update_time,remark,sysfindname FROM sys_fence_group LIMIT ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\n; bad SQL grammar []","data":null} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:40:42 GMT", connection:"close"] + 耗时/时间=76MS-2024-09-23 09:40:42-2024-09-23 09:40:42 ]] -20:33:56.757 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@26641541[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmProfession"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmScale"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmName"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLogs"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmPhone"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEmail"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmWebsite"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmAddress"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmDesc"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"UserId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"RoleId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:56 GMT", connection:"close"] - 耗时/时间=123MS-2024-09-17 20:33:56-2024-09-17 20:33:56 -]] -20:33:57.025 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@575c7dc6[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:57 GMT", connection:"close"] - 耗时/时间=69MS-2024-09-17 20:33:56-2024-09-17 20:33:56 -]] -20:33:57.263 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@13729bfc[ +09:40:45.040 [boundedElastic-34] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:41:05.048 [boundedElastic-32] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:41:25.052 [boundedElastic-23] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:41:45.035 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:41:47.097 [nacos-grpc-client-executor-110.42.213.184-722] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3681 +09:41:47.097 [nacos-grpc-client-executor-110.42.213.184-722] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:41:47.098 [nacos-grpc-client-executor-110.42.213.184-722] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:41:47.099 [nacos-grpc-client-executor-110.42.213.184-722] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3681 +09:42:05.085 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:42:07.645 [nacos-grpc-client-executor-110.42.213.184-726] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3683 +09:42:07.645 [nacos-grpc-client-executor-110.42.213.184-726] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:42:07.646 [nacos-grpc-client-executor-110.42.213.184-726] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:42:07.646 [nacos-grpc-client-executor-110.42.213.184-726] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3683 +09:42:25.158 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:42:41.902 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@27b2469b[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:57 GMT", connection:"close"] - 耗时/时间=37MS-2024-09-17 20:33:57-2024-09-17 20:33:57 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:42:41 GMT", connection:"close"] + 耗时/时间=60MS-2024-09-23 09:42:41-2024-09-23 09:42:41 ]] -20:33:57.330 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@45958aaa[ +09:42:42.160 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2b9b3361[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:57 GMT", connection:"close"] - 耗时/时间=43MS-2024-09-17 20:33:57-2024-09-17 20:33:57 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:42:41 GMT", connection:"close"] + 耗时/时间=75MS-2024-09-23 09:42:42-2024-09-23 09:42:42 ]] -20:33:57.711 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@e165c23[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:42:43.702 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@18216fa4[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:57 GMT", connection:"close"] - 耗时/时间=30MS-2024-09-17 20:33:57-2024-09-17 20:33:57 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":500,"msg":"\r\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\r\n### The error may exist in com/muyu/carrail/mapper/SysFenceMapper.java (best guess)\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: SELECT id,group_code,group_name,group_type,state,create_by,create_time,update_by,update_time,remark,sysfindname FROM sys_fence_group LIMIT ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\n; bad SQL grammar []","data":null} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:42:43 GMT", connection:"close"] + 耗时/时间=898MS-2024-09-23 09:42:42-2024-09-23 09:42:43 ]] -20:33:57.893 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@42096c6f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmProfession","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmScale","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmName","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLogs","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmPhone","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEmail","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmWebsite","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmAddress","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UserId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"RoleId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=125MS-2024-09-17 20:33:57-2024-09-17 20:33:57 -]] -20:33:57.908 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7745dacc[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:57 GMT", connection:"close"] - 耗时/时间=183MS-2024-09-17 20:33:57-2024-09-17 20:33:57 -]] -20:33:58.111 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1b594cb7[ +09:42:45.111 [boundedElastic-34] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:43:05.041 [boundedElastic-36] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:43:25.163 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:43:31.659 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2724e9b8[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:57 GMT", connection:"close"] - 耗时/时间=26MS-2024-09-17 20:33:58-2024-09-17 20:33:58 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:43:31 GMT", connection:"close"] + 耗时/时间=225MS-2024-09-23 09:43:31-2024-09-23 09:43:31 ]] -20:33:58.192 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5cf2d962[ +09:43:32.332 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@46ab5c59[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=66MS-2024-09-17 20:33:58-2024-09-17 20:33:58 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:43:31 GMT", connection:"close"] + 耗时/时间=513MS-2024-09-23 09:43:31-2024-09-23 09:43:32 ]] -20:33:58.436 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2a213953[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +09:43:33.357 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@67f2adb6[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmProfession"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmScale"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmName"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLogs"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmPhone"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEmail"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmWebsite"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmAddress"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmDesc"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"UserId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"RoleId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=154MS-2024-09-17 20:33:58-2024-09-17 20:33:58 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":500,"msg":"\r\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\r\n### The error may exist in com/muyu/carrail/mapper/SysFenceMapper.java (best guess)\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: SELECT id,group_code,group_name,group_type,state,create_by,create_time,update_by,update_time,remark,sysfindname FROM sys_fence_group LIMIT ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\n; bad SQL grammar []","data":null} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 01:43:33 GMT", connection:"close"] + 耗时/时间=185MS-2024-09-23 09:43:33-2024-09-23 09:43:33 ]] -20:33:58.650 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@47244d8b[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=53MS-2024-09-17 20:33:58-2024-09-17 20:33:58 -]] -20:33:58.743 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7108759f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=95MS-2024-09-17 20:33:58-2024-09-17 20:33:58 -]] -20:33:58.806 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1a240ac9[ +09:43:45.148 [boundedElastic-37] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:44:05.040 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:44:25.073 [boundedElastic-41] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:44:45.141 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:45:05.879 [boundedElastic-36] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:45:25.080 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:45:45.051 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:46:05.047 [boundedElastic-39] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:46:25.191 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:46:45.557 [boundedElastic-39] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:47:05.525 [boundedElastic-41] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:47:25.159 [boundedElastic-38] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:47:45.056 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:48:05.175 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:48:25.099 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:48:45.090 [boundedElastic-44] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:49:05.086 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:49:25.063 [boundedElastic-46] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:49:45.164 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:50:05.049 [boundedElastic-46] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:50:25.064 [boundedElastic-45] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:50:45.167 [boundedElastic-41] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:51:05.051 [boundedElastic-30] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:51:25.061 [boundedElastic-48] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:51:45.047 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:52:05.244 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:52:25.046 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:52:45.144 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:53:05.092 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:53:25.047 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:53:45.061 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:54:05.151 [boundedElastic-46] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:54:26.657 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:54:45.243 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:55:05.215 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:55:25.196 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:55:45.707 [boundedElastic-27] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:55:54.218 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +09:56:05.166 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:56:26.160 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:56:47.491 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:56:50.486 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server healthy check fail, currentConnection = 1727054108911_117.143.60.138_56218 +09:56:50.486 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:56:50.486 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:56:53.609 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:56:56.612 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:56:56.816 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:56:59.832 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:57:00.141 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:57:02.313 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Success to connect a server [110.42.213.184:8848], connectionId = 1727056621978_117.143.60.138_55323 +09:57:02.313 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727054108911_117.143.60.138_56218 +09:57:02.313 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727054108911_117.143.60.138_56218 +09:57:02.313 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Notify disconnected event to listeners +09:57:02.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Notify connected event to listeners. +09:57:02.316 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:57:02.814 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +09:57:02.890 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway +09:57:03.084 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:57:03.225 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:57:03.428 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:57:03.599 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:57:03.645 [nacos-grpc-client-executor-110.42.213.184-1107] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3686 +09:57:03.646 [nacos-grpc-client-executor-110.42.213.184-1107] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3686 +09:57:04.455 [nacos-grpc-client-executor-110.42.213.184-1108] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3687 +09:57:04.456 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-car# +09:57:04.456 [nacos-grpc-client-executor-110.42.213.184-1108] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3687 +09:57:04.457 [nacos-grpc-client-executor-110.42.213.184-1110] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3688 +09:57:04.457 [nacos-grpc-client-executor-110.42.213.184-1110] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3688 +09:57:04.458 [nacos-grpc-client-executor-110.42.213.184-1111] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3689 +09:57:04.458 [nacos-grpc-client-executor-110.42.213.184-1111] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3689 +09:57:05.747 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:57:05.887 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:57:05.887 [nacos-grpc-client-executor-110.42.213.184-1113] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3690 +09:57:05.887 [nacos-grpc-client-executor-110.42.213.184-1113] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3690 +09:57:06.045 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:57:06.707 [nacos-grpc-client-executor-110.42.213.184-1117] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3691 +09:57:06.707 [nacos-grpc-client-executor-110.42.213.184-1117] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3691 +09:57:07.001 [nacos-grpc-client-executor-110.42.213.184-1118] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3692 +09:57:07.003 [nacos-grpc-client-executor-110.42.213.184-1118] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3692 +09:57:12.346 [nacos-grpc-client-executor-110.42.213.184-1119] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3694 +09:57:12.346 [nacos-grpc-client-executor-110.42.213.184-1119] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3694 +09:57:14.387 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6fe7de60-d301-4ac7-8bca-ad0d87cd140a_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:57:15.300 [nacos-grpc-client-executor-110.42.213.184-1120] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3697 +09:57:15.301 [nacos-grpc-client-executor-110.42.213.184-1120] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:57:15.301 [nacos-grpc-client-executor-110.42.213.184-1120] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:57:15.302 [nacos-grpc-client-executor-110.42.213.184-1120] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3697 +09:57:16.536 [nacos-grpc-client-executor-110.42.213.184-1121] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3699 +09:57:16.538 [nacos-grpc-client-executor-110.42.213.184-1121] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:57:16.538 [nacos-grpc-client-executor-110.42.213.184-1121] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:57:16.539 [nacos-grpc-client-executor-110.42.213.184-1121] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3699 +09:57:22.468 [nacos-grpc-client-executor-110.42.213.184-1122] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3702 +09:57:22.470 [nacos-grpc-client-executor-110.42.213.184-1122] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3702 +09:57:33.229 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +09:57:49.411 [nacos-grpc-client-executor-110.42.213.184-1132] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3705 +09:57:49.411 [nacos-grpc-client-executor-110.42.213.184-1132] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:57:49.411 [nacos-grpc-client-executor-110.42.213.184-1132] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:57:49.412 [nacos-grpc-client-executor-110.42.213.184-1132] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3705 +09:57:49.720 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:57:53.603 [nacos-grpc-client-executor-110.42.213.184-1135] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3707 +09:57:53.604 [nacos-grpc-client-executor-110.42.213.184-1135] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:57:53.604 [nacos-grpc-client-executor-110.42.213.184-1135] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +09:57:53.605 [nacos-grpc-client-executor-110.42.213.184-1135] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3707 +09:58:15.619 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:58:53.247 [boundedElastic-53] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:59:05.184 [boundedElastic-46] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:59:07.798 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +09:59:25.248 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +09:59:36.778 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +09:59:46.961 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:00:05.188 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:00:27.122 [boundedElastic-54] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:00:45.182 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:01:05.276 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:01:14.143 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server healthy check fail, currentConnection = 1727056621978_117.143.60.138_55323 +10:01:14.143 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Try to reconnect to a new server, server is not appointed, will choose a random server. +10:01:14.143 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:01:16.579 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Success to connect a server [110.42.213.184:8848], connectionId = 1727056876241_117.143.60.138_55852 +10:01:16.579 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056621978_117.143.60.138_55323 +10:01:16.579 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056621978_117.143.60.138_55323 +10:01:16.579 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Notify disconnected event to listeners +10:01:16.579 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Notify connected event to listeners. +10:01:16.579 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +10:01:19.073 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-gateway +10:01:19.325 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +10:01:19.326 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +10:01:19.461 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +10:01:20.353 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +10:01:20.353 [nacos-grpc-client-executor-110.42.213.184-1233] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3709 +10:01:20.353 [nacos-grpc-client-executor-110.42.213.184-1233] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3709 +10:01:20.355 [nacos-grpc-client-executor-110.42.213.184-1234] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3710 +10:01:20.355 [nacos-grpc-client-executor-110.42.213.184-1234] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3710 +10:01:20.480 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +10:01:21.009 [nacos-grpc-client-executor-110.42.213.184-1236] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3711 +10:01:21.009 [nacos-grpc-client-executor-110.42.213.184-1236] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3711 +10:01:23.491 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-car# +10:01:23.491 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +10:01:23.491 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +10:01:25.202 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:01:26.064 [nacos-grpc-client-executor-110.42.213.184-1237] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3713 +10:01:26.064 [nacos-grpc-client-executor-110.42.213.184-1237] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3713 +10:01:26.219 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +10:01:26.506 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +10:01:26.640 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-car# +10:01:26.723 [nacos-grpc-client-executor-110.42.213.184-1241] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3714 +10:01:26.724 [nacos-grpc-client-executor-110.42.213.184-1241] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3714 +10:01:27.039 [nacos-grpc-client-executor-110.42.213.184-1242] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3715 +10:01:27.039 [nacos-grpc-client-executor-110.42.213.184-1242] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3715 +10:01:29.646 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +10:01:29.646 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +10:01:30.524 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +10:01:30.524 [nacos-grpc-client-executor-110.42.213.184-1244] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3716 +10:01:30.524 [nacos-grpc-client-executor-110.42.213.184-1244] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3716 +10:01:32.650 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-car# +10:01:32.851 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +10:01:33.750 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +10:01:35.413 [nacos-grpc-client-executor-110.42.213.184-1249] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3717 +10:01:35.413 [nacos-grpc-client-executor-110.42.213.184-1249] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3717 +10:01:35.414 [nacos-grpc-client-executor-110.42.213.184-1250] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3718 +10:01:35.415 [nacos-grpc-client-executor-110.42.213.184-1250] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3718 +10:01:47.900 [boundedElastic-46] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:02:08.049 [boundedElastic-16] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:02:11.351 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +10:02:18.506 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Server healthy check fail, currentConnection = 1727054108043_117.143.60.138_56217 +10:02:18.506 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +10:02:18.506 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:02:19.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056939313_117.143.60.138_56027 +10:02:19.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727054108043_117.143.60.138_56217 +10:02:19.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727054108043_117.143.60.138_56217 +10:02:19.238 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Notify disconnected event to listeners +10:02:19.240 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] DisConnected,clear listen context... +10:02:19.240 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Notify connected event to listeners. +10:02:19.240 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Connected,notify listen context... +10:02:20.403 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d497366d-d1d0-442c-ae41-4f542b303d10_config-0] Server check success, currentServer is 110.42.213.184:8848 +10:02:25.782 [boundedElastic-46] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:02:44.570 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +10:02:45.462 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:02:45.665 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Server check success, currentServer is 110.42.213.184:8848 +10:03:05.357 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:03:25.217 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:03:45.245 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:04:05.175 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:04:25.243 [boundedElastic-57] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:04:45.659 [boundedElastic-58] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:05:05.173 [boundedElastic-54] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:05:25.680 [boundedElastic-54] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:06:04.785 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:06:15.159 [boundedElastic-59] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:06:35.581 [boundedElastic-52] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:06:55.213 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:07:15.576 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:07:35.201 [boundedElastic-57] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:07:55.172 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:08:15.149 [boundedElastic-62] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:08:35.046 [boundedElastic-42] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:08:55.490 [boundedElastic-61] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:09:15.049 [boundedElastic-58] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:09:35.161 [boundedElastic-49] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:09:55.047 [boundedElastic-64] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:10:15.125 [boundedElastic-63] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:10:35.040 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:10:55.252 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:11:15.151 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:11:35.130 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:11:55.049 [boundedElastic-65] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:12:15.076 [boundedElastic-65] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:12:35.174 [boundedElastic-65] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:12:55.082 [boundedElastic-69] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:13:15.097 [boundedElastic-65] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:13:35.321 [boundedElastic-46] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:13:55.235 [boundedElastic-68] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:14:15.099 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:14:36.088 [boundedElastic-65] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:14:55.256 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:15:15.054 [boundedElastic-50] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:15:35.053 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:15:41.675 [nacos-grpc-client-executor-110.42.213.184-1581] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3720 +10:15:41.675 [nacos-grpc-client-executor-110.42.213.184-1581] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:15:41.675 [nacos-grpc-client-executor-110.42.213.184-1581] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +10:15:41.676 [nacos-grpc-client-executor-110.42.213.184-1581] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3720 +10:15:55.269 [boundedElastic-64] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:16:08.349 [nacos-grpc-client-executor-110.42.213.184-1593] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3722 +10:16:08.350 [nacos-grpc-client-executor-110.42.213.184-1593] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:16:08.350 [nacos-grpc-client-executor-110.42.213.184-1593] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:16:08.351 [nacos-grpc-client-executor-110.42.213.184-1593] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3722 +10:16:15.047 [boundedElastic-64] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:16:35.589 [boundedElastic-65] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:16:56.272 [boundedElastic-64] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:17:15.046 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:17:35.062 [boundedElastic-74] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:17:55.439 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:18:15.577 [boundedElastic-74] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:18:35.036 [boundedElastic-74] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:18:55.677 [boundedElastic-72] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:19:17.172 [boundedElastic-72] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:19:35.262 [boundedElastic-69] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:19:55.183 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:20:15.064 [boundedElastic-75] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:20:35.178 [boundedElastic-56] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:20:55.358 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:21:15.198 [boundedElastic-69] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:21:35.140 [boundedElastic-73] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:21:55.446 [boundedElastic-72] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:22:02.146 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@31dfef62[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=90MS-2024-09-17 20:33:58-2024-09-17 20:33:58 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:22:02 GMT", connection:"close"] + 耗时/时间=919MS-2024-09-23 10:22:01-2024-09-23 10:22:02 ]] -20:33:58.917 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@280fd6d7[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=78MS-2024-09-17 20:33:58-2024-09-17 20:33:58 -]] -20:33:59.049 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@770d7517[ +10:22:03.071 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@d8ee392[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=101MS-2024-09-17 20:33:58-2024-09-17 20:33:59 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:22:02 GMT", connection:"close"] + 耗时/时间=498MS-2024-09-23 10:22:02-2024-09-23 10:22:03 ]] -20:33:59.237 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4a46cdc4[ +10:22:08.692 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@29d6b6f7[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} + 查询参数={} + 请求体= + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":500,"msg":"\r\n### Error querying database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\r\n### The error may exist in com/muyu/carrail/mapper/SysFenceMapper.java (best guess)\r\n### The error may involve defaultParameterMap\r\n### The error occurred while setting parameters\r\n### SQL: SELECT id,group_code,group_name,group_type,state,create_by,create_time,update_by,update_time,remark,sysfindname FROM sys_fence_group LIMIT ?\r\n### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'sysfindname' in 'field list'\n; bad SQL grammar []","data":null} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:22:08 GMT", connection:"close"] + 耗时/时间=2594MS-2024-09-23 10:22:06-2024-09-23 10:22:08 +]] +10:22:15.261 [boundedElastic-68] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:22:35.138 [boundedElastic-76] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:22:40.637 [nacos-grpc-client-executor-110.42.213.184-1760] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3724 +10:22:40.638 [nacos-grpc-client-executor-110.42.213.184-1760] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:22:40.638 [nacos-grpc-client-executor-110.42.213.184-1760] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +10:22:40.639 [nacos-grpc-client-executor-110.42.213.184-1760] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3724 +10:22:55.202 [boundedElastic-77] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:23:11.576 [nacos-grpc-client-executor-110.42.213.184-1772] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3726 +10:23:11.576 [nacos-grpc-client-executor-110.42.213.184-1772] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:23:11.578 [nacos-grpc-client-executor-110.42.213.184-1772] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:23:11.582 [nacos-grpc-client-executor-110.42.213.184-1772] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3726 +10:23:15.083 [boundedElastic-73] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:23:17.611 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@36c50d3f[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:59 GMT", connection:"close"] - 耗时/时间=165MS-2024-09-17 20:33:59-2024-09-17 20:33:59 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":100,"userName":"admin","nickName":"最高管理员","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":100,"parentId":0,"ancestors":"0","deptName":"若依科技","orderNum":0,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:23:17 GMT", connection:"close"] + 耗时/时间=2045MS-2024-09-23 10:23:15-2024-09-23 10:23:17 ]] -20:33:59.421 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@479c2e4c[ +10:23:18.742 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@16af4155[ 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=128MS-2024-09-17 20:33:59-2024-09-17 20:33:59 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Platform","path":"/platform","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"平台管理","icon":"system","noCache":false,"link":null},"children":[{"name":"Firm","path":"firm","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"企业管理","icon":"international","noCache":false,"link":null},"children":[{"name":"FirmInfo","path":"firmInfo","hidden":false,"component":"firm/firmInfo/index","meta":{"title":"企业基础信息","icon":"#","noCache":false,"link":null}},{"name":"FirmDetails","path":"firmDetails","hidden":false,"component":"firm/firmDetails/index","meta":{"title":"企业详细信息","icon":"#","noCache":false,"link":null}}]},{"name":"Message","path":"message","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"报文管理","icon":"swagger","noCache":false,"link":null},"children":[{"name":"MessageInfo","path":"messageInfo","hidden":false,"component":"message/messageInfo/index","meta":{"title":"车辆报文记录","icon":"#","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":false,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"MessageType","path":"messageType","hidden":false,"component":"message/messageType/index","meta":{"title":"车辆报文类型","icon":"#","noCache":false,"link":null}}]}]},{"name":"Firm","path":"/firm","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"企业功能","icon":"client","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":true,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆基础信息","icon":"shopping","noCache":false,"link":null}},{"name":"Message","path":"message","hidden":true,"component":"message/message/index","meta":{"title":"报文","icon":"#","noCache":false,"link":null}}]},{"name":"Reveal","path":"reveal","hidden":false,"component":"reveal/data/index","meta":{"title":"车务管理","icon":"button","noCache":false,"link":null}},{"name":"Car","path":"car","hidden":false,"component":"carRail/corpuscle/index","meta":{"title":"电子围栏","icon":"online","noCache":false,"link":null}},{"name":"Map","path":"map","hidden":true,"component":"car/trajectory/index","meta":{"title":"地图","icon":"international","noCache":false,"link":null}},{"name":"Carrail","path":"carrail","hidden":false,"component":"fence/fence/index","meta":{"title":"赛博围栏车辆管理","icon":"list","noCache":false,"link":null}},{"name":"Cars","path":"cars","hidden":false,"component":"monitoring/map/index","meta":{"title":"电子围栏实时监控","icon":"international","noCache":false,"link":null}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":true,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"故障码管理","icon":"bug","noCache":false,"link":null},"children":[{"name":"Log","path":"log","hidden":false,"component":"platform/log/index","meta":{"title":"故障日志","icon":"log","noCache":false,"link":null}},{"name":"Breakdown","path":"breakdown","hidden":false,"component":"car/fault/index","meta":{"title":"车辆故障","icon":"dict","noCache":false,"link":null}}]}]} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:23:18 GMT", connection:"close"] + 耗时/时间=112MS-2024-09-23 10:23:18-2024-09-23 10:23:18 ]] -20:33:59.631 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3f06074f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:23:21.350 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@743332eb[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:58 GMT", connection:"close"] - 耗时/时间=102MS-2024-09-17 20:33:59-2024-09-17 20:33:59 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=0", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:23:21 GMT", connection:"close"] + 耗时/时间=1892MS-2024-09-23 10:23:19-2024-09-23 10:23:21 ]] -20:33:59.662 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@52e54ac7[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:23:28.353 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7c1b1a66[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:59 GMT", connection:"close"] - 耗时/时间=132MS-2024-09-17 20:33:59-2024-09-17 20:33:59 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"id":1,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":2,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"},{"id":3,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":4,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:23:28 GMT", connection:"close"] + 耗时/时间=297MS-2024-09-23 10:23:28-2024-09-23 10:23:28 ]] -20:33:59.763 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@66c1dd16[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:23:33.222 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6da11b08[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmProfession","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmScale","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmName","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLogs","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmPhone","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEmail","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmWebsite","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmAddress","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UserId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"RoleId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:00 GMT", connection:"close"] - 耗时/时间=213MS-2024-09-17 20:33:59-2024-09-17 20:33:59 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:23:33 GMT", connection:"close"] + 耗时/时间=174MS-2024-09-23 10:23:33-2024-09-23 10:23:33 ]] -20:33:59.876 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@41dd6511[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:23:35.092 [boundedElastic-68] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:23:38.704 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1e03c347[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/1 ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:33:59 GMT", connection:"close"] - 耗时/时间=54MS-2024-09-17 20:33:59-2024-09-17 20:33:59 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:23:38 GMT", connection:"close"] + 耗时/时间=149MS-2024-09-23 10:23:38-2024-09-23 10:23:38 ]] -20:34:00.086 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@49d26cf7[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:23:40.269 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@756191da[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/1 ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:00 GMT", connection:"close"] - 耗时/时间=31MS-2024-09-17 20:34:00-2024-09-17 20:34:00 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:23:40 GMT", connection:"close"] + 耗时/时间=434MS-2024-09-23 10:23:39-2024-09-23 10:23:40 ]] -20:34:00.284 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@59d035b8[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:23:55.064 [boundedElastic-72] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:24:15.515 [boundedElastic-75] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:24:35.147 [boundedElastic-69] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:24:55.065 [boundedElastic-75] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:25:15.081 [boundedElastic-69] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:25:35.043 [boundedElastic-77] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:25:47.981 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6a0a24fa[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:00 GMT", connection:"close"] - 耗时/时间=69MS-2024-09-17 20:34:00-2024-09-17 20:34:00 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"id":1,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":2,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"},{"id":3,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":4,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:25:47 GMT", connection:"close"] + 耗时/时间=349MS-2024-09-23 10:25:47-2024-09-23 10:25:47 ]] -20:34:00.475 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@704ef0c2[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:25:55.211 [boundedElastic-69] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:26:05.391 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@71a9f5c1[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmProfession"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmScale"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmName"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLogs"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmPhone"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEmail"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmWebsite"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmAddress"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmDesc"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"UserId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"RoleId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:00 GMT", connection:"close"] - 耗时/时间=280MS-2024-09-17 20:34:00-2024-09-17 20:34:00 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:26:05 GMT", connection:"close"] + 耗时/时间=96MS-2024-09-23 10:26:05-2024-09-23 10:26:05 ]] -20:34:00.592 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@20fe0cf[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:26:15.121 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:26:15.789 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@790bbe56[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:00 GMT", connection:"close"] - 耗时/时间=119MS-2024-09-17 20:34:00-2024-09-17 20:34:00 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"id":1,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":2,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"},{"id":3,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":4,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:26:15 GMT", connection:"close"] + 耗时/时间=215MS-2024-09-23 10:26:15-2024-09-23 10:26:15 ]] -20:34:00.667 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@622ea30c[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:26:24.231 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2d46c0b2[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:00 GMT", connection:"close"] - 耗时/时间=78MS-2024-09-17 20:34:00-2024-09-17 20:34:00 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:26:24 GMT", connection:"close"] + 耗时/时间=3192MS-2024-09-23 10:26:21-2024-09-23 10:26:24 ]] -20:34:00.686 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5829fe9f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:26:27.413 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@533475a4[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/carRail/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:00 GMT", connection:"close"] - 耗时/时间=34MS-2024-09-17 20:34:00-2024-09-17 20:34:00 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/car", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"id":1,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":2,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"},{"id":3,"fenceCode":"1","fenceName":"1","fenceType":1,"fencePosition":"1","state":"1"},{"id":4,"fenceCode":"1","fenceName":"1","fenceType":0,"fencePosition":"1","state":"1"}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:26:27 GMT", connection:"close"] + 耗时/时间=792MS-2024-09-23 10:26:26-2024-09-23 10:26:27 ]] -20:34:00.841 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7df05c33[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} +10:26:33.351 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5298d6f6[ + 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/car/fence/list ---> 200 OK + 路由=Route{id='cloud-car', uri=lb://cloud-car, order=0, predicate=Paths: [/car/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} 查询参数={} 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:00 GMT", connection:"close"] - 耗时/时间=110MS-2024-09-17 20:34:00-2024-09-17 20:34:00 -]] -20:34:01.114 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3d3ff4fd[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:01 GMT", connection:"close"] - 耗时/时间=163MS-2024-09-17 20:34:00-2024-09-17 20:34:01 -]] -20:34:01.304 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@67b818e9[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmProfession","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmScale","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmName","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLogs","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmPhone","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEmail","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmWebsite","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmAddress","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UserId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"RoleId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:01 GMT", connection:"close"] - 耗时/时间=258MS-2024-09-17 20:34:00-2024-09-17 20:34:01 -]] -20:34:01.473 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@e43a2a9[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:01 GMT", connection:"close"] - 耗时/时间=121MS-2024-09-17 20:34:01-2024-09-17 20:34:01 -]] -20:34:02.741 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@65a419be[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:02 GMT", connection:"close"] - 耗时/时间=136MS-2024-09-17 20:34:02-2024-09-17 20:34:02 -]] -20:34:02.921 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7a8a23ac[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:03 GMT", connection:"close"] - 耗时/时间=70MS-2024-09-17 20:34:02-2024-09-17 20:34:02 -]] -20:34:03.261 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7d653863[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmProfession"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmScale"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmName"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLogs"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmPhone"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmEmail"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmWebsite"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmAddress"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"FirmDesc"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":true,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarPlate"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBrand"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarType"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"State"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":false,"increment":false,"query":false,"capJavaField":"CreateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateBy"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"pk":false,"insert":true,"usableColumn":false,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"UpdateTime"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":true,"superColumn":true,"edit":true,"increment":false,"query":false,"capJavaField":"Remark"}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"UserId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"Id"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"pk":true,"insert":true,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":"RoleId"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarVin"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarMotorModel"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer"},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"pk":false,"insert":true,"usableColumn":false,"superColumn":false,"edit":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel"}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":8,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:03 GMT", connection:"close"] - 耗时/时间=235MS-2024-09-17 20:34:03-2024-09-17 20:34:03 -]] -20:34:03.359 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7746950[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:02 GMT", connection:"close"] - 耗时/时间=33MS-2024-09-17 20:34:03-2024-09-17 20:34:03 -]] -20:34:03.406 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@72daa8f1[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/8?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:03 GMT", connection:"close"] - 耗时/时间=80MS-2024-09-17 20:34:03-2024-09-17 20:34:03 -]] -20:34:05.879 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1648c926[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"tableId":8,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:06 GMT", connection:"close"] - 耗时/时间=324MS-2024-09-17 20:34:05-2024-09-17 20:34:05 -]] -20:34:06.399 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5069a239[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"tableId":8,"dbName":"one","tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"fault","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 20:12:03","updateBy":"","updateTime":"2024-09-17 20:12:06","remark":null,"columnId":null,"tableId":8,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:06 GMT", connection:"close"] - 耗时/时间=406MS-2024-09-17 20:34:05-2024-09-17 20:34:06 -]] -20:34:10.608 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@643f60c6[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-DELETE}:/code/gen/8 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:11 GMT", connection:"close"] - 耗时/时间=686MS-2024-09-17 20:34:09-2024-09-17 20:34:10 -]] -20:34:10.946 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4cd1b539[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:10 GMT", connection:"close"] - 耗时/时间=262MS-2024-09-17 20:34:10-2024-09-17 20:34:10 -]] -20:34:12.591 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3f8f8dfc[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"请求参数类型不匹配,参数[tableId]要求类型为:'java.lang.Long',但输入值为:'selDbNameAll'","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:12 GMT", connection:"close"] - 耗时/时间=51MS-2024-09-17 20:34:12-2024-09-17 20:34:12 -]] -20:34:12.703 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@30ddede3[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":19,"rows":[{"createBy":null,"createTime":"2024-09-17 11:32:12","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 11:32:12","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_corpuscle_fence","tableComment":"电子围栏表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group","tableComment":"围栏组表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group_mid","tableComment":"围栏组连接表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:12 GMT", connection:"close"] - 耗时/时间=163MS-2024-09-17 20:34:12-2024-09-17 20:34:12 -]] -20:34:14.935 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2df56a57[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:14 GMT", connection:"close"] - 耗时/时间=58MS-2024-09-17 20:34:14-2024-09-17 20:34:14 -]] -20:34:15.246 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6918465a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:15 GMT", connection:"close"] - 耗时/时间=61MS-2024-09-17 20:34:15-2024-09-17 20:34:15 -]] -20:34:15.541 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@19f9b627[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:16 GMT", connection:"close"] - 耗时/时间=111MS-2024-09-17 20:34:15-2024-09-17 20:34:15 -]] -20:34:16.681 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@22946349[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":19,"rows":[{"createBy":null,"createTime":"2024-09-17 11:32:12","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 11:32:12","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_corpuscle_fence","tableComment":"电子围栏表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group","tableComment":"围栏组表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_fence_group_mid","tableComment":"围栏组连接表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"dbName":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:16 GMT", connection:"close"] - 耗时/时间=94MS-2024-09-17 20:34:16-2024-09-17 20:34:16 -]] -20:34:17.063 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@61a8ed57[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"请求参数类型不匹配,参数[tableId]要求类型为:'java.lang.Long',但输入值为:'selDbNameAll'","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:17 GMT", connection:"close"] - 耗时/时间=125MS-2024-09-17 20:34:16-2024-09-17 20:34:17 -]] -20:34:29.304 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@8f37d17[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car_fault]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Required request parameter 'dbName' for method parameter type String is not present","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:29 GMT", connection:"close"] - 耗时/时间=36MS-2024-09-17 20:34:29-2024-09-17 20:34:29 -]] -20:34:30.962 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@a8f5fce[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:30 GMT", connection:"close"] - 耗时/时间=52MS-2024-09-17 20:34:30-2024-09-17 20:34:30 -]] -20:34:31.150 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3c89565e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:31 GMT", connection:"close"] - 耗时/时间=47MS-2024-09-17 20:34:31-2024-09-17 20:34:31 -]] -20:34:31.468 [reactor-http-nio-13] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2af0d961[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:31 GMT", connection:"close"] - 耗时/时间=89MS-2024-09-17 20:34:31-2024-09-17 20:34:31 -]] -20:34:32.288 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1c5ac92[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:32 GMT", connection:"close"] - 耗时/时间=37MS-2024-09-17 20:34:32-2024-09-17 20:34:32 -]] -20:34:32.358 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1a7f4d3d[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:32 GMT", connection:"close"] - 耗时/时间=53MS-2024-09-17 20:34:32-2024-09-17 20:34:32 -]] -20:34:32.733 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3451d87a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"pk":false,"insert":false,"usableColumn":false,"superColumn":false,"edit":false,"increment":false,"query":false,"capJavaField":null}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:32 GMT", connection:"close"] - 耗时/时间=167MS-2024-09-17 20:34:32-2024-09-17 20:34:32 -]] -20:34:34.215 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3193e313[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:34 GMT", connection:"close"] - 耗时/时间=58MS-2024-09-17 20:34:34-2024-09-17 20:34:34 -]] -20:34:34.417 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@5566d62a[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:34 GMT", connection:"close"] - 耗时/时间=133MS-2024-09-17 20:34:34-2024-09-17 20:34:34 -]] -20:34:34.529 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@653b240[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:34 GMT", connection:"close"] - 耗时/时间=62MS-2024-09-17 20:34:34-2024-09-17 20:34:34 -]] -20:34:34.715 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1dafb136[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:34 GMT", connection:"close"] - 耗时/时间=110MS-2024-09-17 20:34:34-2024-09-17 20:34:34 -]] -20:34:34.945 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2d1bf99c[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:34:35 GMT", connection:"close"] - 耗时/时间=128MS-2024-09-17 20:34:34-2024-09-17 20:34:34 -]] -20:34:52.011 [nacos-grpc-client-executor-47.116.173.119-992] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 17266 -20:34:52.011 [nacos-grpc-client-executor-47.116.173.119-992] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:34:52.012 [nacos-grpc-client-executor-47.116.173.119-992] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:34:52.013 [nacos-grpc-client-executor-47.116.173.119-992] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 17266 -20:34:52.014 [nacos-grpc-client-executor-47.116.173.119-993] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Receive server push request, request = NotifySubscriberRequest, requestId = 17270 -20:34:52.014 [nacos-grpc-client-executor-47.116.173.119-993] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:34:52.014 [nacos-grpc-client-executor-47.116.173.119-993] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:34:52.015 [nacos-grpc-client-executor-47.116.173.119-993] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a4e55545-1b86-4295-9c95-e96ea584843e] Ack server push request, request = NotifySubscriberRequest, requestId = 17270 -20:34:53.441 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:34:53.441 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:34:53.519 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:34:53.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:34:53.520 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:34:53.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a4e55545-1b86-4295-9c95-e96ea584843e -20:34:53.522 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@9377122[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 761] -20:34:53.522 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:34:53.522 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6ce9c335[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:34:53.522 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726574208030_117.143.60.138_51034 -20:34:53.525 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@bf27bd5[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 995] -20:34:53.525 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a4e55545-1b86-4295-9c95-e96ea584843e -20:34:53.525 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:34:53.525 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:34:53.525 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:35:17.679 [main] INFO c.m.g.CloudGatewayApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:35:21.665 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayFilter,143] - [Sentinel SpringCloudGateway] register SentinelGatewayFilter with order: -2147483648 -20:35:22.376 [main] INFO c.a.c.s.g.s.SentinelSCGAutoConfiguration - [sentinelGatewayBlockExceptionHandler,133] - [Sentinel SpringCloudGateway] register SentinelGatewayBlockExceptionHandler -20:35:23.078 [main] INFO c.a.n.common.labels - [getLabels,48] - DefaultLabelsCollectorManager get labels..... -20:35:23.078 [main] INFO c.a.n.common.labels - [getLabels,62] - Process LabelsCollector with [name:defaultNacosLabelsCollector] -20:35:23.078 [main] INFO c.a.n.common.labels - [collectLabels,62] - default nacos collect properties raw labels: null -20:35:23.079 [main] INFO c.a.n.common.labels - [collectLabels,69] - default nacos collect properties labels: {} -20:35:23.079 [main] INFO c.a.n.common.labels - [collectLabels,72] - default nacos collect jvm raw labels: null -20:35:23.079 [main] INFO c.a.n.common.labels - [collectLabels,78] - default nacos collect jvm labels: {} -20:35:23.080 [main] INFO c.a.n.common.labels - [collectLabels,81] - default nacos collect env raw labels: null -20:35:23.080 [main] INFO c.a.n.common.labels - [collectLabels,89] - default nacos collect env labels: {} -20:35:23.080 [main] INFO c.a.n.common.labels - [getLabels,50] - DefaultLabelsCollectorManager get labels finished,labels :{} -20:35:23.081 [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:23.081 [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:23.084 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:35:23.085 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:35:23.086 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] sentinel-cloud-gateway+DEFAULT_GROUP+one -20:35:23.093 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=sentinel-cloud-gateway, group=DEFAULT_GROUP, cnt=1 -20:35:23.093 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0 -20:35:23.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$537/0x0000000800f7e8e8 -20:35:23.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Register server push request handler:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$$Lambda$538/0x0000000800f7ed08 -20:35:23.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Registry connection listener to current client:com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$1 -20:35:23.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] RpcClient init, ServerListFactory = com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient$2 -20:35:23.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:35:23.095 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:35:23.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726576525925_117.143.60.138_57801 -20:35:23.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:35:23.444 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Notify connected event to listeners. -20:35:23.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8870 -20:35:23.444 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [f04a5ca7-4199-42f6-bf54-c4ddb939703c_config-0] Connected,notify listen context... -20:35:24.006 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:35:24.007 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:35:24.007 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:35:24.012 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:35:24.016 [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:24.017 [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:24.166 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 5aa478d1-0a72-4db3-ba82-0b28374f02d9 -20:35:24.168 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->5aa478d1-0a72-4db3-ba82-0b28374f02d9 -20:35:24.168 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:35:24.168 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:35:24.169 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:35:24.169 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:35:24.170 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:35:24.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726576526951_117.143.60.138_57807 -20:35:24.394 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Notify connected event to listeners. -20:35:24.394 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:35:24.394 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:35:24.394 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$558/0x00000008010b8870 -20:35:24.395 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gateway with instance Instance{instanceId='null', ip='10.113.37.39', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:35:24.522 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gateway 10.113.37.39:8080 register finished -20:35:24.597 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-3] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: -20:35:24.597 [boundedElastic-5] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:35:24.597 [boundedElastic-9] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:35:24.597 [boundedElastic-4] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: -20:35:24.597 [boundedElastic-7] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:35:24.597 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:35:24.597 [boundedElastic-8] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:35:24.598 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:35:24.598 [boundedElastic-6] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:35:24.598 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:35:24.598 [boundedElastic-11] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:35:24.598 [boundedElastic-10] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:35:24.598 [boundedElastic-12] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:35:24.598 [boundedElastic-15] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:35:24.598 [boundedElastic-13] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:35:24.598 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:35:24.599 [boundedElastic-16] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:35:24.599 [boundedElastic-15] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:35:24.600 [boundedElastic-16] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:35:24.600 [boundedElastic-14] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:35:24.715 [boundedElastic-15] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.715 [boundedElastic-9] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.715 [boundedElastic-12] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.715 [boundedElastic-4] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.716 [boundedElastic-6] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.719 [boundedElastic-8] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.719 [boundedElastic-13] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.720 [boundedElastic-4] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.720 [boundedElastic-9] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.720 [boundedElastic-12] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.720 [boundedElastic-15] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.720 [boundedElastic-6] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.720 [boundedElastic-8] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.720 [boundedElastic-13] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:24.871 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:35:24.944 [main] INFO c.m.g.CloudGatewayApplication - [logStarted,56] - Started CloudGatewayApplication in 9.918 seconds (process running for 10.649) -20:35:24.949 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway+DEFAULT_GROUP+one -20:35:24.949 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway, group=DEFAULT_GROUP, cnt=1 -20:35:24.949 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway, group=DEFAULT_GROUP -20:35:24.949 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway.yml+DEFAULT_GROUP+one -20:35:24.950 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway.yml, group=DEFAULT_GROUP, cnt=1 -20:35:24.950 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway.yml, group=DEFAULT_GROUP -20:35:24.952 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gateway-dev.yml+DEFAULT_GROUP+one -20:35:24.953 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:35:24.954 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gateway-dev.yml, group=DEFAULT_GROUP -20:35:25.016 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17317 -20:35:25.017 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:25.017 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:25.018 [nacos-grpc-client-executor-47.116.173.119-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17317 -20:35:25.218 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17318 -20:35:25.220 [nacos-grpc-client-executor-47.116.173.119-0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17318 -20:35:25.221 [nacos-grpc-client-executor-47.116.173.119-1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17320 -20:35:25.222 [nacos-grpc-client-executor-47.116.173.119-1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17320 -20:35:25.223 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17319 -20:35:25.224 [nacos-grpc-client-executor-47.116.173.119-2] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17319 -20:35:25.226 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17321 -20:35:25.226 [nacos-grpc-client-executor-47.116.173.119-3] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17321 -20:35:25.228 [nacos-grpc-client-executor-47.116.173.119-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17322 -20:35:25.228 [nacos-grpc-client-executor-47.116.173.119-4] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17322 -20:35:25.230 [nacos-grpc-client-executor-47.116.173.119-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17323 -20:35:25.231 [nacos-grpc-client-executor-47.116.173.119-5] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17323 -20:35:28.007 [nacos-grpc-client-executor-47.116.173.119-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17339 -20:35:28.007 [nacos-grpc-client-executor-47.116.173.119-11] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:28.008 [nacos-grpc-client-executor-47.116.173.119-11] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:28.008 [nacos-grpc-client-executor-47.116.173.119-11] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17339 -20:35:38.796 [nacos-grpc-client-executor-47.116.173.119-64] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17349 -20:35:38.796 [nacos-grpc-client-executor-47.116.173.119-64] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:38.798 [nacos-grpc-client-executor-47.116.173.119-64] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:35:38.800 [nacos-grpc-client-executor-47.116.173.119-64] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17349 -20:35:43.679 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@745e61ec[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:43 GMT", connection:"close"] - 耗时/时间=587MS-2024-09-17 20:35:43-2024-09-17 20:35:43 -]] -20:35:44.028 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@931ccbc[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:44 GMT", connection:"close"] - 耗时/时间=328MS-2024-09-17 20:35:43-2024-09-17 20:35:44 -]] -20:35:44.978 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7ba6c911[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":4,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:44 GMT", connection:"close"] - 耗时/时间=717MS-2024-09-17 20:35:44-2024-09-17 20:35:44 -]] -20:35:45.691 [reactor-http-nio-11] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@449d5787[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/selDbNameAll ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":["2112MCC","car_seven","eight","five","four","nacos-config","one","seven","six","three","two"]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:44 GMT", connection:"close"] - 耗时/时间=48MS-2024-09-17 20:35:45-2024-09-17 20:35:45 -]] -20:35:45.787 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@38685b0e[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/db/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":19,"rows":[{"createBy":null,"createTime":"2024-09-17 11:32:12","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 11:32:12","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_corpuscle_fence","tableComment":"电子围栏表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_fence_group","tableComment":"围栏组表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_fence_group_mid","tableComment":"围栏组连接表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-17 08:27:32","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user_role","tableComment":"用户和角色关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:22","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user_post","tableComment":"用户与岗位关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:20","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_user","tableComment":"用户信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:18","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role_menu","tableComment":"角色和菜单关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:16","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role_dept","tableComment":"角色和部门关联表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:15","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false},{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"tableId":null,"tableName":"sys_role","tableComment":"角色信息表","subTableName":null,"subTableFkName":null,"className":null,"tplCategory":null,"packageName":null,"moduleName":null,"businessName":null,"functionName":null,"functionAuthor":null,"genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":"2024-09-14 12:20:14","updateBy":null,"updateTime":null,"remark":null,"columnId":null,"tableId":null,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"list":false,"increment":false,"query":false,"capJavaField":null,"pk":false,"edit":false,"superColumn":false,"insert":false,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":false}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:46 GMT", connection:"close"] - 耗时/时间=148MS-2024-09-17 20:35:45-2024-09-17 20:35:45 -]] -20:35:54.457 [reactor-http-nio-14] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@311d8aaa[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car_fault], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Name for argument of type [java.lang.String] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag.","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:54 GMT", connection:"close"] - 耗时/时间=46MS-2024-09-17 20:35:54-2024-09-17 20:35:54 -]] -20:35:59.045 [reactor-http-nio-16] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@249411ad[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car_fault], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":500,"msg":"Name for argument of type [java.lang.String] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag.","data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:59 GMT", connection:"close"] - 耗时/时间=216MS-2024-09-17 20:35:58-2024-09-17 20:35:59 -]] -20:35:59.973 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1424cda5[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/code/gen/importTable ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car_fault], dbName=[one]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", content-length:"0", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:59 GMT", connection:"close"] - 耗时/时间=2881MS-2024-09-17 20:35:57-2024-09-17 20:35:59 -]] -20:36:00.407 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@548ba658[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726576444554&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"tableId":9,"dbName":"one","tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":9,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:35:59 GMT", connection:"close"] - 耗时/时间=90MS-2024-09-17 20:36:00-2024-09-17 20:36:00 -]] -20:36:23.246 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4b4bb57c[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:23 GMT", connection:"close"] - 耗时/时间=237MS-2024-09-17 20:36:23-2024-09-17 20:36:23 -]] -20:36:23.273 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@193f5cea[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:23 GMT", connection:"close"] - 耗时/时间=262MS-2024-09-17 20:36:23-2024-09-17 20:36:23 -]] -20:36:23.445 [reactor-http-nio-18] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4e495f16[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/9 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":9,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FaultCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultLabel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultBit","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultValue","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultWarn","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultStatus","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarPlate","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBrand","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastJoinTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarLastOfflineTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UserId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"RoleId","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarMotorModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryManufacturer","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarBatteryModel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmName","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLogs","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmLegalPerson","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmPhone","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEmail","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmWebsite","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmAddress","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FirmCreditCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmRegisteredCapital","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmEstablishTime","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmProfession","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmScale","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmStaffNumber","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessStart","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FirmBusinessEnd","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}],"rows":[{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FaultCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultLabel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultBit","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultValue","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultWarn","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultStatus","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":9,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"list":false,"increment":true,"query":false,"capJavaField":"Id","pk":true,"edit":false,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"list":true,"increment":false,"query":true,"capJavaField":"FaultCode","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultType","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"CarVin","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultLabel","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultBit","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultValue","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultWarn","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultStatus","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"FaultDesc","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"list":true,"increment":false,"query":true,"capJavaField":"State","pk":false,"edit":true,"superColumn":false,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateBy","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"CreateTime","pk":false,"edit":false,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateBy","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"list":false,"increment":false,"query":false,"capJavaField":"UpdateTime","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":false},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"list":true,"increment":false,"query":false,"capJavaField":"Remark","pk":false,"edit":true,"superColumn":true,"insert":true,"usableColumn":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"tree":false,"sub":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:23 GMT", connection:"close"] - 耗时/时间=696MS-2024-09-17 20:36:22-2024-09-17 20:36:23 -]] -20:36:24.251 [reactor-http-nio-1] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@16acaf16[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:24 GMT", connection:"close"] - 耗时/时间=181MS-2024-09-17 20:36:24-2024-09-17 20:36:24 -]] -20:36:24.580 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@95afcf4[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:24 GMT", connection:"close"] - 耗时/时间=235MS-2024-09-17 20:36:24-2024-09-17 20:36:24 -]] -20:36:25.302 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@3f8a766f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:24 GMT", connection:"close"] - 耗时/时间=237MS-2024-09-17 20:36:25-2024-09-17 20:36:25 -]] -20:36:25.320 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@6b022722[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:25 GMT", connection:"close"] - 耗时/时间=253MS-2024-09-17 20:36:25-2024-09-17 20:36:25 -]] -20:36:26.143 [reactor-http-nio-6] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@331af823[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:25 GMT", connection:"close"] - 耗时/时间=273MS-2024-09-17 20:36:25-2024-09-17 20:36:26 -]] -20:36:26.517 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7592c05f[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/9 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":9,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FaultCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FaultType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FaultLabel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FaultBit","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FaultValue","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FaultWarn","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FaultStatus","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FaultDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"query":true,"increment":false,"capJavaField":"CarPlate","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarBrand","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"CarModel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"CarType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"CarLastJoinTime","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"CarLastOfflineTime","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":false,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":false,"capJavaField":"UserId","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"query":false,"increment":false,"capJavaField":"RoleId","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"CarMotorManufacturer","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarMotorModel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"CarBatteryManufacturer","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"CarBatteryModel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FirmCreditCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FirmName","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"FirmLogs","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FirmLegalPerson","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FirmPhone","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FirmEmail","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FirmWebsite","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FirmAddress","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FirmDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":false,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FirmCreditCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FirmRegisteredCapital","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"FirmEstablishTime","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FirmProfession","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FirmScale","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FirmStaffNumber","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FirmBusinessStart","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FirmBusinessEnd","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true}],"rows":[{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FaultCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FaultType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FaultLabel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FaultBit","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FaultValue","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FaultWarn","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FaultStatus","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FaultDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":9,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FaultCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FaultType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FaultLabel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FaultBit","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FaultValue","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FaultWarn","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FaultStatus","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FaultDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:26 GMT", connection:"close"] - 耗时/时间=1422MS-2024-09-17 20:36:25-2024-09-17 20:36:26 -]] -20:36:26.517 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@37c7d3da[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:26 GMT", connection:"close"] - 耗时/时间=251MS-2024-09-17 20:36:26-2024-09-17 20:36:26 -]] -20:36:27.216 [reactor-http-nio-10] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@249ba384[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:26 GMT", connection:"close"] - 耗时/时间=200MS-2024-09-17 20:36:27-2024-09-17 20:36:27 -]] -20:36:27.216 [reactor-http-nio-9] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@1fdab731[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"b48bb9af-2026-4731-9d3b-854f8952d222", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:26 GMT", connection:"close"] - 耗时/时间=204MS-2024-09-17 20:36:27-2024-09-17 20:36:27 -]] -20:36:27.957 [nacos-grpc-client-executor-47.116.173.119-96] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17395 -20:36:27.957 [nacos-grpc-client-executor-47.116.173.119-96] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:27.957 [nacos-grpc-client-executor-47.116.173.119-96] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:27.957 [nacos-grpc-client-executor-47.116.173.119-96] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17395 -20:36:28.045 [nacos-grpc-client-executor-47.116.173.119-97] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17399 -20:36:28.061 [nacos-grpc-client-executor-47.116.173.119-97] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:28.061 [nacos-grpc-client-executor-47.116.173.119-97] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:28.061 [nacos-grpc-client-executor-47.116.173.119-97] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17399 -20:36:30.056 [nacos-grpc-client-executor-47.116.173.119-98] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17404 -20:36:30.056 [nacos-grpc-client-executor-47.116.173.119-98] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:30.056 [nacos-grpc-client-executor-47.116.173.119-98] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:30.056 [nacos-grpc-client-executor-47.116.173.119-98] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17404 -20:36:30.056 [nacos-grpc-client-executor-47.116.173.119-99] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17405 -20:36:30.056 [nacos-grpc-client-executor-47.116.173.119-99] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:30.056 [nacos-grpc-client-executor-47.116.173.119-99] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:30.056 [nacos-grpc-client-executor-47.116.173.119-99] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17405 -20:36:31.498 [nacos-grpc-client-executor-47.116.173.119-100] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17407 -20:36:31.503 [nacos-grpc-client-executor-47.116.173.119-100] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:31.503 [nacos-grpc-client-executor-47.116.173.119-100] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:31.503 [nacos-grpc-client-executor-47.116.173.119-100] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17407 -20:36:32.399 [nacos-grpc-client-executor-47.116.173.119-101] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Receive server push request, request = NotifySubscriberRequest, requestId = 17410 -20:36:32.399 [nacos-grpc-client-executor-47.116.173.119-101] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:32.399 [nacos-grpc-client-executor-47.116.173.119-101] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -20:36:32.399 [nacos-grpc-client-executor-47.116.173.119-101] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5aa478d1-0a72-4db3-ba82-0b28374f02d9] Ack server push request, request = NotifySubscriberRequest, requestId = 17410 -20:36:41.344 [reactor-http-nio-12] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@34293190[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-DELETE}:/auth/logout ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@6b9d7abc, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1568/0x00000008015eadb0@341788be, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", content-length:"0", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=T9DM/nnyclKosv7BKS7FK5vflkpxvop8wd8D+IiSbEbaHYb7BJgzBgUt/VS7ZAks7jA+E3Q+C5E7m0/1iZkOow==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6ImI0OGJiOWFmLTIwMjYtNDczMS05ZDNiLTg1NGY4OTUyZDIyMiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzYzOTgsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.oFrnrkIGPL77N96e7mVJGd_M3NROpV4vXE_eicJclhw", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:36:41 GMT", connection:"close"] - 耗时/时间=694MS-2024-09-17 20:36:40-2024-09-17 20:36:41 -]] -20:40:54.500 [reactor-http-nio-15] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2d41e72f[ - 请求简略信息=[userId:[null]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-POST}:/auth/login ---> 200 OK - 路由=Route{id='cloud-auth', uri=lb://cloud-auth, order=0, predicate=Paths: [/auth/**], match trailing slash: true, gatewayFilters=[[com.muyu.gateway.filter.CacheRequestFilter$CacheRequestGatewayFilter@b85935e, order = 1], [com.muyu.gateway.filter.ValidateCodeFilter$$Lambda$1568/0x00000008015eadb0@61cf7f6f, order = 2], [[StripPrefix parts = 1], order = 3]], metadata={}} - 查询参数={} - 请求体={"username":"admin","password":"admin123"} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", sec-ch-ua-mobile:"?0", repeatsubmit:"false", istoken:"false", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":{"access_token":"eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY","expires_in":720}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:40:54 GMT", connection:"close"] - 耗时/时间=473MS-2024-09-17 20:40:54-2024-09-17 20:40:54 -]] -20:40:54.578 [reactor-http-nio-17] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@248038c4[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/user/getInfo ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"user":{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"管理员","userId":1,"deptId":103,"userName":"admin","nickName":"若依","email":"ry@163.com","phonenumber":"15888888888","sex":"1","avatar":"","password":"$2a$10$7JB720yubVSZvUI0rEqK/.VqGOZTH.ulu33dHOiBE8ByOhJIrdAu2","status":"0","delFlag":"0","loginIp":"127.0.0.1","loginDate":"2024-05-23T15:08:18.000+08:00","dept":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"deptId":103,"parentId":101,"ancestors":"0,100,101","deptName":"研发部门","orderNum":1,"leader":"若依","phone":null,"email":null,"status":"0","delFlag":null,"parentName":null,"children":[]},"roles":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"roleId":1,"roleName":"超级管理员","roleKey":"admin","roleSort":1,"dataScope":"1","menuCheckStrictly":false,"deptCheckStrictly":false,"status":"0","delFlag":null,"flag":false,"menuIds":null,"deptIds":null,"permissions":null,"admin":true}],"roleIds":null,"postIds":null,"roleId":null,"admin":true},"roles":["admin"],"permissions":["*:*:*"]}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:40:54 GMT", connection:"close"] - 耗时/时间=50MS-2024-09-17 20:40:54-2024-09-17 20:40:54 -]] -20:40:54.984 [reactor-http-nio-19] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@9377e7[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/getRouters ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/login?redirect=%2Findex", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"name":"System","path":"/system","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统管理","icon":"system","noCache":false,"link":null},"children":[{"name":"User","path":"user","hidden":false,"component":"system/user/index","meta":{"title":"用户管理","icon":"user","noCache":false,"link":null}},{"name":"Role","path":"role","hidden":false,"component":"system/role/index","meta":{"title":"角色管理","icon":"peoples","noCache":false,"link":null}},{"name":"Menu","path":"menu","hidden":false,"component":"system/menu/index","meta":{"title":"菜单管理","icon":"tree-table","noCache":false,"link":null}},{"name":"Dept","path":"dept","hidden":false,"component":"system/dept/index","meta":{"title":"部门管理","icon":"tree","noCache":false,"link":null}},{"name":"Post","path":"post","hidden":false,"component":"system/post/index","meta":{"title":"岗位管理","icon":"post","noCache":false,"link":null}},{"name":"Dict","path":"dict","hidden":false,"component":"system/dict/index","meta":{"title":"字典管理","icon":"dict","noCache":false,"link":null}},{"name":"Config","path":"config","hidden":false,"component":"system/config/index","meta":{"title":"参数设置","icon":"edit","noCache":false,"link":null}},{"name":"Notice","path":"notice","hidden":false,"component":"system/notice/index","meta":{"title":"通知公告","icon":"message","noCache":false,"link":null}},{"name":"Log","path":"log","hidden":false,"redirect":"noRedirect","component":"ParentView","alwaysShow":true,"meta":{"title":"日志管理","icon":"log","noCache":false,"link":null},"children":[{"name":"Operlog","path":"operlog","hidden":false,"component":"system/operlog/index","meta":{"title":"操作日志","icon":"form","noCache":false,"link":null}},{"name":"Logininfor","path":"logininfor","hidden":false,"component":"system/logininfor/index","meta":{"title":"登录日志","icon":"logininfor","noCache":false,"link":null}}]}]},{"name":"Monitor","path":"/monitor","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统监控","icon":"monitor","noCache":false,"link":null},"children":[{"name":"Online","path":"online","hidden":false,"component":"monitor/online/index","meta":{"title":"在线用户","icon":"online","noCache":false,"link":null}},{"name":"Http://admin.xxl.muyu.icu/toLogin","path":"http://admin.xxl.muyu.icu/toLogin","hidden":false,"component":"monitor/job/index","meta":{"title":"定时任务","icon":"job","noCache":false,"link":"http://admin.xxl.muyu.icu/toLogin"}},{"name":"Http://localhost:8718","path":"http://localhost:8718","hidden":false,"component":"Layout","meta":{"title":"Sentinel控制台","icon":"sentinel","noCache":false,"link":"http://localhost:8718"}},{"name":"Http://localhost:8848/nacos","path":"http://localhost:8848/nacos","hidden":false,"component":"Layout","meta":{"title":"Nacos控制台","icon":"nacos","noCache":false,"link":"http://localhost:8848/nacos"}},{"name":"Http://localhost:9100/login","path":"http://localhost:9100/login","hidden":false,"component":"Layout","meta":{"title":"Admin控制台","icon":"server","noCache":false,"link":"http://localhost:9100/login"}}]},{"name":"Tool","path":"/tool","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"系统工具","icon":"tool","noCache":false,"link":null},"children":[{"name":"Build","path":"build","hidden":false,"component":"tool/build/index","meta":{"title":"表单构建","icon":"build","noCache":false,"link":null}},{"name":"Gen","path":"gen","hidden":false,"component":"tool/gen/index","meta":{"title":"代码生成","icon":"code","noCache":false,"link":null}},{"name":"Http://localhost:8080/doc.html","path":"http://localhost:8080/doc.html","hidden":false,"component":"Layout","meta":{"title":"系统接口","icon":"swagger","noCache":false,"link":"http://localhost:8080/doc.html"}}]},{"name":"Http://muyu.vip","path":"http://muyu.vip","hidden":false,"component":"Layout","meta":{"title":"若依官网","icon":"guide","noCache":false,"link":"http://muyu.vip"}},{"name":"Car","path":"/car","hidden":false,"redirect":"noRedirect","component":"Layout","alwaysShow":true,"meta":{"title":"车辆管理","icon":"list","noCache":false,"link":null},"children":[{"name":"Car","path":"car","hidden":false,"component":"car/car/index","meta":{"title":"车辆","icon":"shopping","noCache":false,"link":null}}]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:40:54 GMT", connection:"close"] - 耗时/时间=75MS-2024-09-17 20:40:54-2024-09-17 20:40:54 -]] -20:40:57.984 [reactor-http-nio-20] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@13195930[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"tableId":9,"dbName":"one","tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":9,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:40:57 GMT", connection:"close"] - 耗时/时间=431MS-2024-09-17 20:40:57-2024-09-17 20:40:57 -]] -20:41:00.446 [reactor-http-nio-3] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@721590a4[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/dict/type/optionselect ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"用户性别列表","dictId":1,"dictName":"用户性别","dictType":"sys_user_sex","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"菜单状态列表","dictId":2,"dictName":"菜单状态","dictType":"sys_show_hide","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统开关列表","dictId":3,"dictName":"系统开关","dictType":"sys_normal_disable","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务状态列表","dictId":4,"dictName":"任务状态","dictType":"sys_job_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"任务分组列表","dictId":5,"dictName":"任务分组","dictType":"sys_job_group","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"系统是否列表","dictId":6,"dictName":"系统是否","dictType":"sys_yes_no","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知类型列表","dictId":7,"dictName":"通知类型","dictType":"sys_notice_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"通知状态列表","dictId":8,"dictName":"通知状态","dictType":"sys_notice_status","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"操作类型列表","dictId":9,"dictName":"操作类型","dictType":"sys_oper_type","status":"0"},{"createBy":"admin","createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":"登录状态列表","dictId":10,"dictName":"系统状态","dictType":"sys_common_status","status":"0"}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:41:00 GMT", connection:"close"] - 耗时/时间=161MS-2024-09-17 20:41:00-2024-09-17 20:41:00 -]] -20:41:00.532 [reactor-http-nio-4] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@63547154[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/system/menu/list ---> 200 OK - 路由=Route{id='cloud-system', uri=lb://cloud-system, order=0, predicate=Paths: [/system/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":[{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1,"menuName":"系统管理","parentName":null,"parentId":0,"orderNum":1,"path":"system","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"system","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":2,"menuName":"系统监控","parentName":null,"parentId":0,"orderNum":2,"path":"monitor","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"monitor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":3,"menuName":"系统工具","parentName":null,"parentId":0,"orderNum":3,"path":"tool","component":null,"query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"tool","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":4,"menuName":"若依官网","parentName":null,"parentId":0,"orderNum":4,"path":"http://muyu.vip","component":null,"query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"guide","children":[]},{"createBy":null,"createTime":"2024-09-17 12:05:25","updateBy":null,"updateTime":null,"remark":null,"menuId":2000,"menuName":"车辆管理","parentName":null,"parentId":0,"orderNum":5,"path":"car","component":null,"query":null,"isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"list","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":100,"menuName":"用户管理","parentName":null,"parentId":1,"orderNum":1,"path":"user","component":"system/user/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:user:list","icon":"user","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":101,"menuName":"角色管理","parentName":null,"parentId":1,"orderNum":2,"path":"role","component":"system/role/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:role:list","icon":"peoples","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":102,"menuName":"菜单管理","parentName":null,"parentId":1,"orderNum":3,"path":"menu","component":"system/menu/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:menu:list","icon":"tree-table","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":103,"menuName":"部门管理","parentName":null,"parentId":1,"orderNum":4,"path":"dept","component":"system/dept/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dept:list","icon":"tree","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":104,"menuName":"岗位管理","parentName":null,"parentId":1,"orderNum":5,"path":"post","component":"system/post/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:post:list","icon":"post","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":105,"menuName":"字典管理","parentName":null,"parentId":1,"orderNum":6,"path":"dict","component":"system/dict/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:dict:list","icon":"dict","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":106,"menuName":"参数设置","parentName":null,"parentId":1,"orderNum":7,"path":"config","component":"system/config/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:config:list","icon":"edit","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":107,"menuName":"通知公告","parentName":null,"parentId":1,"orderNum":8,"path":"notice","component":"system/notice/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:notice:list","icon":"message","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":108,"menuName":"日志管理","parentName":null,"parentId":1,"orderNum":9,"path":"log","component":"","query":"","isFrame":"1","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"","icon":"log","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":109,"menuName":"在线用户","parentName":null,"parentId":2,"orderNum":1,"path":"online","component":"monitor/online/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:online:list","icon":"online","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":110,"menuName":"定时任务","parentName":null,"parentId":2,"orderNum":2,"path":"http://admin.xxl.muyu.icu/toLogin","component":"monitor/job/index","query":"","isFrame":"0","isCache":"0","menuType":"M","visible":"0","status":"0","perms":"monitor:job:list","icon":"job","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":111,"menuName":"Sentinel控制台","parentName":null,"parentId":2,"orderNum":3,"path":"http://localhost:8718","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:sentinel:list","icon":"sentinel","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":112,"menuName":"Nacos控制台","parentName":null,"parentId":2,"orderNum":4,"path":"http://localhost:8848/nacos","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:nacos:list","icon":"nacos","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":113,"menuName":"Admin控制台","parentName":null,"parentId":2,"orderNum":5,"path":"http://localhost:9100/login","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"monitor:server:list","icon":"server","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":114,"menuName":"表单构建","parentName":null,"parentId":3,"orderNum":1,"path":"build","component":"tool/build/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:build:list","icon":"build","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":115,"menuName":"代码生成","parentName":null,"parentId":3,"orderNum":2,"path":"gen","component":"tool/gen/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:gen:list","icon":"code","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":116,"menuName":"系统接口","parentName":null,"parentId":3,"orderNum":3,"path":"http://localhost:8080/doc.html","component":"","query":"","isFrame":"0","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"tool:swagger:list","icon":"swagger","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1000,"menuName":"用户查询","parentName":null,"parentId":100,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1001,"menuName":"用户新增","parentName":null,"parentId":100,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1002,"menuName":"用户修改","parentName":null,"parentId":100,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1003,"menuName":"用户删除","parentName":null,"parentId":100,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1004,"menuName":"用户导出","parentName":null,"parentId":100,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1005,"menuName":"用户导入","parentName":null,"parentId":100,"orderNum":6,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1006,"menuName":"重置密码","parentName":null,"parentId":100,"orderNum":7,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:user:resetPwd","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1007,"menuName":"角色查询","parentName":null,"parentId":101,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1008,"menuName":"角色新增","parentName":null,"parentId":101,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1009,"menuName":"角色修改","parentName":null,"parentId":101,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1010,"menuName":"角色删除","parentName":null,"parentId":101,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1011,"menuName":"角色导出","parentName":null,"parentId":101,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:role:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1012,"menuName":"菜单查询","parentName":null,"parentId":102,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1013,"menuName":"菜单新增","parentName":null,"parentId":102,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1014,"menuName":"菜单修改","parentName":null,"parentId":102,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1015,"menuName":"菜单删除","parentName":null,"parentId":102,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:menu:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1016,"menuName":"部门查询","parentName":null,"parentId":103,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1017,"menuName":"部门新增","parentName":null,"parentId":103,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1018,"menuName":"部门修改","parentName":null,"parentId":103,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1019,"menuName":"部门删除","parentName":null,"parentId":103,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dept:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1020,"menuName":"岗位查询","parentName":null,"parentId":104,"orderNum":1,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1021,"menuName":"岗位新增","parentName":null,"parentId":104,"orderNum":2,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1022,"menuName":"岗位修改","parentName":null,"parentId":104,"orderNum":3,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1023,"menuName":"岗位删除","parentName":null,"parentId":104,"orderNum":4,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1024,"menuName":"岗位导出","parentName":null,"parentId":104,"orderNum":5,"path":"","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:post:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1025,"menuName":"字典查询","parentName":null,"parentId":105,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1026,"menuName":"字典新增","parentName":null,"parentId":105,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1027,"menuName":"字典修改","parentName":null,"parentId":105,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1028,"menuName":"字典删除","parentName":null,"parentId":105,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1029,"menuName":"字典导出","parentName":null,"parentId":105,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:dict:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1030,"menuName":"参数查询","parentName":null,"parentId":106,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1031,"menuName":"参数新增","parentName":null,"parentId":106,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1032,"menuName":"参数修改","parentName":null,"parentId":106,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1033,"menuName":"参数删除","parentName":null,"parentId":106,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1034,"menuName":"参数导出","parentName":null,"parentId":106,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:config:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1035,"menuName":"公告查询","parentName":null,"parentId":107,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1036,"menuName":"公告新增","parentName":null,"parentId":107,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:add","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1037,"menuName":"公告修改","parentName":null,"parentId":107,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1038,"menuName":"公告删除","parentName":null,"parentId":107,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:notice:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":500,"menuName":"操作日志","parentName":null,"parentId":108,"orderNum":1,"path":"operlog","component":"system/operlog/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:operlog:list","icon":"form","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":501,"menuName":"登录日志","parentName":null,"parentId":108,"orderNum":2,"path":"logininfor","component":"system/logininfor/index","query":"","isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"system:logininfor:list","icon":"logininfor","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1046,"menuName":"在线查询","parentName":null,"parentId":109,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1047,"menuName":"批量强退","parentName":null,"parentId":109,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:batchLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1048,"menuName":"单条强退","parentName":null,"parentId":109,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"monitor:online:forceLogout","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1055,"menuName":"生成查询","parentName":null,"parentId":115,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1056,"menuName":"生成修改","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:edit","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1058,"menuName":"导入代码","parentName":null,"parentId":115,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:import","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1057,"menuName":"生成删除","parentName":null,"parentId":115,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1059,"menuName":"预览代码","parentName":null,"parentId":115,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:preview","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1060,"menuName":"生成代码","parentName":null,"parentId":115,"orderNum":5,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"tool:gen:code","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1039,"menuName":"操作查询","parentName":null,"parentId":500,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1040,"menuName":"操作删除","parentName":null,"parentId":500,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1041,"menuName":"日志导出","parentName":null,"parentId":500,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:operlog:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1042,"menuName":"登录查询","parentName":null,"parentId":501,"orderNum":1,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:query","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1043,"menuName":"登录删除","parentName":null,"parentId":501,"orderNum":2,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:remove","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1044,"menuName":"日志导出","parentName":null,"parentId":501,"orderNum":3,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:export","icon":"#","children":[]},{"createBy":null,"createTime":"2024-05-23 15:08:18","updateBy":null,"updateTime":null,"remark":null,"menuId":1045,"menuName":"账户解锁","parentName":null,"parentId":501,"orderNum":4,"path":"#","component":"","query":"","isFrame":"1","isCache":"0","menuType":"F","visible":"0","status":"0","perms":"system:logininfor:unlock","icon":"#","children":[]},{"createBy":null,"createTime":"2024-09-17 12:10:58","updateBy":null,"updateTime":null,"remark":null,"menuId":2001,"menuName":"车辆","parentName":null,"parentId":2000,"orderNum":1,"path":"car","component":"car/car/index","query":null,"isFrame":"1","isCache":"0","menuType":"C","visible":"0","status":"0","perms":"car:car:list","icon":"shopping","children":[]}]} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:41:00 GMT", connection:"close"] - 耗时/时间=251MS-2024-09-17 20:41:00-2024-09-17 20:41:00 -]] -20:41:00.717 [reactor-http-nio-2] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@2e240f28[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/9 ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"tables":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":9,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FaultCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FaultType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FaultLabel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FaultBit","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FaultValue","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FaultWarn","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FaultStatus","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FaultDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":7,"dbName":null,"tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":65,"tableId":7,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":66,"tableId":7,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":67,"tableId":7,"columnName":"car_plate","columnComment":"车辆车牌号","columnType":"varchar(120)","javaType":"String","javaField":"carPlate","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":true,"query":true,"increment":false,"capJavaField":"CarPlate","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":68,"tableId":7,"columnName":"car_brand","columnComment":"车辆品牌","columnType":"varchar(32)","javaType":"String","javaField":"carBrand","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarBrand","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":69,"tableId":7,"columnName":"car_model","columnComment":"车辆型号","columnType":"varchar(120)","javaType":"String","javaField":"carModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"CarModel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":70,"tableId":7,"columnName":"car_type","columnComment":"车辆车型(如客车,卡车,公交车等)","columnType":"varchar(32)","javaType":"String","javaField":"carType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"CarType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":71,"tableId":7,"columnName":"car_last_join_time","columnComment":"最后一次连线时间","columnType":"datetime","javaType":"Date","javaField":"carLastJoinTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"CarLastJoinTime","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":72,"tableId":7,"columnName":"car_last_offline_time","columnComment":"最后一次离线时间","columnType":"datetime","javaType":"Date","javaField":"carLastOfflineTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"CarLastOfflineTime","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":73,"tableId":7,"columnName":"state","columnComment":"启用状态(1.在线 2.离线 3.已断开 4.待连接 5.维修中","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":74,"tableId":7,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":10,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":75,"tableId":7,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":11,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":76,"tableId":7,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":77,"tableId":7,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":78,"tableId":7,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":1,"dbName":null,"tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":3,"tableId":1,"columnName":"id","columnComment":"车辆ID","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":false,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":1,"tableId":1,"columnName":"user_id","columnComment":"用户ID","columnType":"bigint","javaType":"Long","javaField":"userId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":false,"capJavaField":"UserId","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":2,"tableId":1,"columnName":"role_id","columnComment":"角色ID","columnType":"bigint","javaType":"Long","javaField":"roleId","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":false,"query":false,"increment":false,"capJavaField":"RoleId","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":4,"tableId":1,"columnName":"car_vin","columnComment":"车辆VIN码","columnType":"varchar(120)","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":5,"tableId":1,"columnName":"car_motor_manufacturer","columnComment":"车辆电机厂商","columnType":"varchar(32)","javaType":"String","javaField":"carMotorManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"CarMotorManufacturer","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":6,"tableId":1,"columnName":"car_motor_model","columnComment":"电机型号","columnType":"varchar(120)","javaType":"String","javaField":"carMotorModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarMotorModel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":7,"tableId":1,"columnName":"car_battery_manufacturer","columnComment":"车辆电池厂商","columnType":"varchar(32)","javaType":"String","javaField":"carBatteryManufacturer","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"CarBatteryManufacturer","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":8,"tableId":1,"columnName":"car_battery_model","columnComment":"电池型号","columnType":"varchar(120)","javaType":"String","javaField":"carBatteryModel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"CarBatteryModel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":3,"dbName":null,"tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":18,"tableId":3,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":19,"tableId":3,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(32)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FirmCreditCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":20,"tableId":3,"columnName":"firm_name","columnComment":"企业名称","columnType":"varchar(32)","javaType":"String","javaField":"firmName","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"LIKE","htmlType":"input","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FirmName","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":21,"tableId":3,"columnName":"firm_logs","columnComment":"企业logs","columnType":"varchar(255)","javaType":"String","javaField":"firmLogs","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"FirmLogs","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":22,"tableId":3,"columnName":"firm_legal_person","columnComment":"企业法人","columnType":"varchar(32)","javaType":"String","javaField":"firmLegalPerson","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FirmLegalPerson","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":23,"tableId":3,"columnName":"firm_phone","columnComment":"联系电话","columnType":"varchar(120)","javaType":"String","javaField":"firmPhone","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FirmPhone","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":24,"tableId":3,"columnName":"firm_email","columnComment":"联系邮箱","columnType":"varchar(120)","javaType":"String","javaField":"firmEmail","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FirmEmail","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":25,"tableId":3,"columnName":"firm_website","columnComment":"联系网址","columnType":"varchar(255)","javaType":"String","javaField":"firmWebsite","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FirmWebsite","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":26,"tableId":3,"columnName":"firm_address","columnComment":"企业地址","columnType":"varchar(255)","javaType":"String","javaField":"firmAddress","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FirmAddress","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":27,"tableId":3,"columnName":"firm_desc","columnComment":"企业描述","columnType":"varchar(900)","javaType":"String","javaField":"firmDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FirmDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":28,"tableId":3,"columnName":"state","columnComment":"启用状态(1.开业 2.停业 3.休业)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":29,"tableId":3,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":30,"tableId":3,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":32,"tableId":3,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":34,"tableId":3,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":36,"tableId":3,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":2,"dbName":null,"tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":null,"genPath":null,"pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":9,"tableId":2,"columnName":"id","columnComment":"企业id","columnType":"varchar(255)","javaType":"String","javaField":"id","isPk":"1","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":false,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":10,"tableId":2,"columnName":"firm_credit_code","columnComment":"统一社会信用代码","columnType":"varchar(120)","javaType":"String","javaField":"firmCreditCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FirmCreditCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":11,"tableId":2,"columnName":"firm_registered_capital","columnComment":"企业注册资本","columnType":"int","javaType":"Long","javaField":"firmRegisteredCapital","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FirmRegisteredCapital","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":12,"tableId":2,"columnName":"firm_establish_time","columnComment":"企业成立日期","columnType":"datetime","javaType":"Date","javaField":"firmEstablishTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"FirmEstablishTime","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":13,"tableId":2,"columnName":"firm_profession","columnComment":"国标行业","columnType":"varchar(120)","javaType":"String","javaField":"firmProfession","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FirmProfession","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":14,"tableId":2,"columnName":"firm_scale","columnComment":"企业规模大小","columnType":"varchar(32)","javaType":"String","javaField":"firmScale","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FirmScale","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":15,"tableId":2,"columnName":"firm_staff_number","columnComment":"企业人数","columnType":"int","javaType":"Long","javaField":"firmStaffNumber","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FirmStaffNumber","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":16,"tableId":2,"columnName":"firm_business_start","columnComment":"企业营业期限开始时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessStart","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FirmBusinessStart","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":17,"tableId":2,"columnName":"firm_business_end","columnComment":"企业营业期限结束时间","columnType":"datetime","javaType":"Date","javaField":"firmBusinessEnd","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"datetime","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FirmBusinessEnd","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true}],"rows":[{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FaultCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FaultType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FaultLabel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FaultBit","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FaultValue","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FaultWarn","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FaultStatus","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FaultDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"info":{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":9,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"SysCarFault","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"fault","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FaultCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FaultType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FaultLabel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FaultBit","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FaultValue","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FaultWarn","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FaultStatus","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FaultDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true}}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:41:00 GMT", connection:"close"] - 耗时/时间=432MS-2024-09-17 20:41:00-2024-09-17 20:41:00 -]] -20:43:47.801 [reactor-http-nio-5] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@4b6b0ddc[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-PUT}:/code/gen ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={} - 请求体={"createBy":null,"createTime":null,"updateBy":null,"updateTime":null,"remark":null,"tableId":9,"dbName":null,"tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"BreakDown","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"breakdown","businessName":"breakdown","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":79,"tableId":9,"columnName":"id","columnComment":"自增主键","columnType":"int","javaType":"Long","javaField":"id","isPk":"1","isIncrement":"1","isRequired":null,"isInsert":"0","isEdit":"1","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":1,"required":false,"query":false,"increment":true,"capJavaField":"Id","list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":true,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":null,"remark":null,"columnId":80,"tableId":9,"columnName":"fault_code","columnComment":"车辆故障编码","columnType":"varchar(32)","javaType":"String","javaField":"faultCode","isPk":"0","isIncrement":"0","isRequired":"1","isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"input","dictType":"","sort":2,"required":true,"query":true,"increment":false,"capJavaField":"FaultCode","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":81,"tableId":9,"columnName":"fault_type","columnComment":"车辆故障类型","columnType":"varchar(32)","javaType":"String","javaField":"faultType","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"select","dictType":"","sort":3,"required":false,"query":true,"increment":false,"capJavaField":"FaultType","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":82,"tableId":9,"columnName":"car_vin","columnComment":"故障VIN编码","columnType":"text","javaType":"String","javaField":"carVin","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"1","queryType":"EQ","htmlType":"textarea","dictType":"","sort":4,"required":false,"query":true,"increment":false,"capJavaField":"CarVin","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":83,"tableId":9,"columnName":"fault_label","columnComment":"车辆故障标签","columnType":"varchar(32)","javaType":"String","javaField":"faultLabel","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"0","queryType":"EQ","htmlType":"input","dictType":"","sort":5,"required":false,"query":true,"increment":false,"capJavaField":"FaultLabel","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":84,"tableId":9,"columnName":"fault_bit","columnComment":"车辆故障位","columnType":"varchar(32)","javaType":"String","javaField":"faultBit","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"0","queryType":"EQ","htmlType":"input","dictType":"","sort":6,"required":false,"query":true,"increment":false,"capJavaField":"FaultBit","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:01","updateBy":"","updateTime":null,"remark":null,"columnId":85,"tableId":9,"columnName":"fault_value","columnComment":"车辆故障值","columnType":"varchar(32)","javaType":"String","javaField":"faultValue","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"0","queryType":"EQ","htmlType":"input","dictType":"","sort":7,"required":false,"query":true,"increment":false,"capJavaField":"FaultValue","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":86,"tableId":9,"columnName":"fault_warn","columnComment":"故障级别","columnType":"varchar(32)","javaType":"String","javaField":"faultWarn","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"0","queryType":"EQ","htmlType":"input","dictType":"","sort":8,"required":false,"query":true,"increment":false,"capJavaField":"FaultWarn","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":87,"tableId":9,"columnName":"fault_status","columnComment":"报警状态(Y.是,N.否)","columnType":"varchar(32)","javaType":"String","javaField":"faultStatus","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"0","queryType":"EQ","htmlType":"radio","dictType":"","sort":9,"required":false,"query":true,"increment":false,"capJavaField":"FaultStatus","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":88,"tableId":9,"columnName":"fault_desc","columnComment":"故障描述信息","columnType":"varchar(900)","javaType":"String","javaField":"faultDesc","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"0","queryType":"EQ","htmlType":"textarea","dictType":"","sort":10,"required":false,"query":true,"increment":false,"capJavaField":"FaultDesc","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":89,"tableId":9,"columnName":"state","columnComment":"启用状态(1.待处理 2.处理中 3.已处理 4.忽略)","columnType":"varchar(32)","javaType":"String","javaField":"state","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"1","isEdit":"1","isList":"1","isQuery":"0","queryType":"EQ","htmlType":"input","dictType":"","sort":11,"required":false,"query":true,"increment":false,"capJavaField":"State","list":true,"superColumn":false,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":90,"tableId":9,"columnName":"create_by","columnComment":"创建人","columnType":"int","javaType":"Long","javaField":"createBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"0","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":12,"required":false,"query":false,"increment":false,"capJavaField":"CreateBy","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":91,"tableId":9,"columnName":"create_time","columnComment":"创建时间","columnType":"datetime","javaType":"Date","javaField":"createTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"0","isEdit":null,"isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":13,"required":false,"query":false,"increment":false,"capJavaField":"CreateTime","list":false,"superColumn":true,"usableColumn":false,"edit":false,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":92,"tableId":9,"columnName":"update_by","columnComment":"更新人","columnType":"int","javaType":"Long","javaField":"updateBy","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"0","isEdit":"0","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"input","dictType":"","sort":14,"required":false,"query":false,"increment":false,"capJavaField":"UpdateBy","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":93,"tableId":9,"columnName":"update_time","columnComment":"更新时间","columnType":"datetime","javaType":"Date","javaField":"updateTime","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"0","isEdit":"0","isList":null,"isQuery":null,"queryType":"EQ","htmlType":"datetime","dictType":"","sort":15,"required":false,"query":false,"increment":false,"capJavaField":"UpdateTime","list":false,"superColumn":true,"usableColumn":false,"edit":true,"pk":false,"insert":true},{"createBy":"admin","createTime":"2024-09-17 12:36:02","updateBy":"","updateTime":null,"remark":null,"columnId":94,"tableId":9,"columnName":"remark","columnComment":"备注","columnType":"text","javaType":"String","javaField":"remark","isPk":"0","isIncrement":"0","isRequired":null,"isInsert":"0","isEdit":"0","isList":"0","isQuery":null,"queryType":"EQ","htmlType":"textarea","dictType":"","sort":16,"required":false,"query":false,"increment":false,"capJavaField":"Remark","list":true,"superColumn":true,"usableColumn":true,"edit":true,"pk":false,"insert":true}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":2000,"parentMenuName":null,"sub":false,"tree":false,"crud":true,"params":{"treeCode":null,"treeName":null,"treeParentCode":null,"parentMenuId":2000}} - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen-edit/index/9?pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", origin:"http://localhost", content-type:"application/json;charset=UTF-8", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", sec-ch-ua-platform:""Windows"", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin", Transfer-Encoding:"chunked"] - 响应体={"code":200,"msg":null,"data":null} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:43:47 GMT", connection:"close"] - 耗时/时间=2751MS-2024-09-17 20:43:45-2024-09-17 20:43:47 -]] -20:43:49.339 [reactor-http-nio-7] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@7f31a480[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/list ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={pageNum=[1], pageSize=[10]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726577027813&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin"] - 响应体={"code":200,"msg":null,"data":{"total":5,"rows":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":1,"dbName":"one","tableName":"sys_car_details","tableComment":"车辆详细信息表","subTableName":null,"subTableFkName":null,"className":"SysCarDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"车辆详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":1,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"tableId":2,"dbName":"one","tableName":"sys_fiem_details","tableComment":"企业详细信息表","subTableName":null,"subTableFkName":null,"className":"SysFiemDetails","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"details","functionName":"企业详细信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:11","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":2,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"tableId":3,"dbName":"one","tableName":"sys_firm","tableComment":"企业基础信息表","subTableName":null,"subTableFkName":null,"className":"SysFirm","tplCategory":"crud","packageName":"com.muyu.system","moduleName":"system","businessName":"firm","functionName":"企业基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:12","updateBy":"","updateTime":null,"remark":null,"columnId":null,"tableId":3,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":null,"treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"tableId":7,"dbName":"one","tableName":"sys_car","tableComment":"车辆基础信息表","subTableName":null,"subTableFkName":null,"className":"SysCar","tplCategory":"crud","packageName":"com.muyu.car","moduleName":"car","businessName":"car","functionName":"车辆基础信息","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 08:32:53","updateBy":"","updateTime":"2024-09-17 08:33:46","remark":null,"columnId":null,"tableId":7,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":"{}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true},{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":"2024-09-17 12:43:48","remark":null,"tableId":9,"dbName":"one","tableName":"sys_car_fault","tableComment":"车辆故障表","subTableName":null,"subTableFkName":null,"className":"BreakDown","tplCategory":"crud","packageName":"com.muyu.breakdown","moduleName":"breakdown","businessName":"breakdown","functionName":"车辆故障","functionAuthor":"muyu","genType":"0","genPath":"/","pkColumn":null,"subTable":null,"columns":[{"createBy":"admin","createTime":"2024-09-17 12:36:00","updateBy":"","updateTime":"2024-09-17 12:43:48","remark":null,"columnId":null,"tableId":9,"columnName":null,"columnComment":null,"columnType":null,"javaType":null,"javaField":null,"isPk":null,"isIncrement":null,"isRequired":null,"isInsert":null,"isEdit":null,"isList":null,"isQuery":null,"queryType":null,"htmlType":null,"dictType":null,"sort":null,"required":false,"query":false,"increment":false,"capJavaField":null,"list":false,"superColumn":false,"usableColumn":false,"edit":false,"pk":false,"insert":false}],"options":"{\"parentMenuId\":2000}","treeCode":null,"treeParentCode":null,"treeName":null,"parentMenuId":null,"parentMenuName":null,"sub":false,"tree":false,"crud":true}],"code":0,"msg":null}} - 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Tue, 17 Sep 2024 12:43:49 GMT", connection:"close"] - 耗时/时间=502MS-2024-09-17 20:43:48-2024-09-17 20:43:49 -]] -20:43:53.097 [reactor-http-nio-8] INFO c.m.g.f.AccessLogFilter - [writeAccessLog,61] - [网关日志:com.muyu.gateway.model.AccessLog@205095ef[ - 请求简略信息=[userId:[1]-userIp:[127.0.0.1]-traceId:[null]] ---结果--- {http-GET}:/code/gen/batchGenCode ---> 200 OK - 路由=Route{id='cloud-gen', uri=lb://cloud-gen, order=0, predicate=Paths: [/code/**], match trailing slash: true, gatewayFilters=[[[StripPrefix parts = 1], order = 1]], metadata={}} - 查询参数={tables=[sys_car_fault]} - 请求体= - 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"XXL_JOB_LOGIN_IDENTITY=7b226964223a312c22757365726e616d65223a2261646d696e222c2270617373776f7264223a226531306164633339343962613539616262653536653035376632306638383365222c22726f6c65223a312c227065726d697373696f6e223a6e756c6c7d; rememberMe=true; username=admin; Admin-Expires-In=720; password=Y1ApUS7WLaCJfIshlbRQ0n19jak1lMqug8U4hXbDoR+ZxF1MHbN50rolol5Lus01knTDPePaCci8aTf+YCFFIQ==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6,ko;q=0.5", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/tool/gen?t=1726577027813&pageNum=1", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-platform:""Windows"", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36 Edg/128.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjRhODNlZDJjLWM3YzctNDlmZS04MzUyLTFkMzc2ZDdlMmNlYSIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjY1NzY4NTQsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.OUYXZF-sgMrb-9A_jfrjFlOFUTdQQhb7zMVJD4ggEzY", sec-ch-ua-mobile:"?0", accept:"application/json, text/plain, */*", sec-ch-ua:""Chromium";v="128", "Not;A=Brand";v="24", "Microsoft Edge";v="128"", connection:"close", host:"localhost:8080", user_key:"4a83ed2c-c7c7-49fe-8352-1d376d7e2cea", user_id:"1", username:"admin"] - 响应体= - 响应头=[Content-Disposition:"attachment; filename="ruoyi.zip"", Content-Type:"application/octet-stream;charset=UTF-8", Content-Length:"9582", Date:"Tue, 17 Sep 2024 12:43:53 GMT", connection:"close"] - 耗时/时间=626MS-2024-09-17 20:43:52-2024-09-17 20:43:53 + 请求头=[x-forwarded-host:"localhost", x-forwarded-proto:"http", x-forwarded-port:"80", x-forwarded-for:"127.0.0.1", cookie:"Idea-8296e76f=77791309-7b41-424d-9b9a-6a3cddfc0e55; rememberMe=true; username=admin; Admin-Expires-In=720; password=KxKWqnggueI5ueTS7cmdnHm0eXh5RLTAGiGhleIiQRpJs5sDLgZwDviHOEMO6zv8uZth4XVldQiybztozZyoZw==; Admin-Token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI; sidebarStatus=1", accept-language:"zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6", accept-encoding:"gzip, deflate, br, zstd", referer:"http://localhost/firm/carrail", sec-fetch-dest:"empty", sec-fetch-mode:"cors", sec-fetch-site:"same-origin", sec-ch-ua-mobile:"?0", sec-ch-ua:""Microsoft Edge";v="129", "Not=A?Brand";v="8", "Chromium";v="129"", accept:"application/json, text/plain, */*", user-agent:"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36 Edg/129.0.0.0", authorization:"Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjoxLCJ1c2VyX2tleSI6IjNhNWI2NWY0LWI2OGQtNDYzNC1hMmVhLWQzZWJiYmUyNmU0YiIsInVzZXJuYW1lIjoiYWRtaW4iLCJpYXQiOjE3MjcwNTUwNTIsInN1YiI6IlBlcmlwaGVyYWxzIiwiaXNzIjoiTVVZVSJ9.p9-GAVFeOBL8vLhX8yNjYO8K_Yl_PBe0QHYvgU8A4jI", sec-ch-ua-platform:""Windows"", connection:"close", host:"localhost:8080", user_key:"3a5b65f4-b68d-4634-a2ea-d3ebbbe26e4b", user_id:"1", username:"admin"] + 响应体={"code":200,"msg":null,"data":{"total":2,"rows":[{"id":1,"groupCode":"1","groupName":"1","groupType":"1","state":"1","createBy":"1","createTime":"2024-09-20T11:55:30.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null},{"id":4,"groupCode":"2","groupName":"2","groupType":"2","state":"1","createBy":"1","createTime":"2024-09-20T11:55:34.000+08:00","updateBy":"1","updateTime":"2024-09-20T11:55:34.000+08:00","remark":null}],"code":0,"msg":null}} + 响应头=[transfer-encoding:"chunked", Content-Type:"application/json", Date:"Mon, 23 Sep 2024 02:26:33 GMT", connection:"close"] + 耗时/时间=762MS-2024-09-23 10:26:32-2024-09-23 10:26:33 ]] +10:26:35.116 [boundedElastic-73] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:26:55.105 [boundedElastic-72] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:27:15.047 [boundedElastic-68] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:27:35.072 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:27:55.068 [boundedElastic-80] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:28:15.076 [boundedElastic-80] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:28:35.288 [boundedElastic-72] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:28:56.244 [boundedElastic-69] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:29:15.087 [boundedElastic-79] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:29:35.104 [boundedElastic-76] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:29:55.106 [boundedElastic-76] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:30:15.079 [boundedElastic-68] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:30:35.469 [boundedElastic-76] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:30:55.178 [boundedElastic-75] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:31:15.131 [boundedElastic-80] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:31:35.057 [boundedElastic-83] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:31:55.356 [boundedElastic-84] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:32:16.279 [boundedElastic-75] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:32:35.238 [boundedElastic-87] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:32:55.227 [boundedElastic-87] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:33:15.168 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:33:35.139 [boundedElastic-68] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:33:55.111 [boundedElastic-72] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:34:15.176 [boundedElastic-83] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:34:35.059 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:34:55.237 [boundedElastic-87] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:35:15.157 [boundedElastic-79] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:35:35.197 [boundedElastic-67] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:35:55.174 [boundedElastic-76] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:36:15.173 [boundedElastic-79] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:36:35.055 [boundedElastic-69] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:36:55.057 [boundedElastic-75] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:37:15.068 [boundedElastic-83] INFO c.a.c.s.d.c.SentinelConverter - [convert,79] - converter can not convert rules because source is empty +10:37:30.691 [nacos-grpc-client-executor-110.42.213.184-2116] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3728 +10:37:30.691 [nacos-grpc-client-executor-110.42.213.184-2116] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:37:30.691 [nacos-grpc-client-executor-110.42.213.184-2116] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +10:37:30.692 [nacos-grpc-client-executor-110.42.213.184-2116] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3728 +10:37:30.754 [nacos-grpc-client-executor-110.42.213.184-2117] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3730 +10:37:30.755 [nacos-grpc-client-executor-110.42.213.184-2117] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:37:30.755 [nacos-grpc-client-executor-110.42.213.184-2117] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +10:37:30.758 [nacos-grpc-client-executor-110.42.213.184-2117] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3730 +10:37:30.969 [nacos-grpc-client-executor-110.42.213.184-2118] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3732 +10:37:30.970 [nacos-grpc-client-executor-110.42.213.184-2118] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:37:30.970 [nacos-grpc-client-executor-110.42.213.184-2118] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +10:37:30.971 [nacos-grpc-client-executor-110.42.213.184-2118] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3732 +10:37:31.075 [nacos-grpc-client-executor-110.42.213.184-2119] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Receive server push request, request = NotifySubscriberRequest, requestId = 3734 +10:37:31.075 [nacos-grpc-client-executor-110.42.213.184-2119] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] +10:37:31.075 [nacos-grpc-client-executor-110.42.213.184-2119] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +10:37:31.076 [nacos-grpc-client-executor-110.42.213.184-2119] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [8a275618-f82d-414d-ae23-7ee8b1ccfecb] Ack server push request, request = NotifySubscriberRequest, requestId = 3734 +10:37:32.133 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +10:37:32.133 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-gateway with instance: Instance{instanceId='null', ip='10.113.37.107', port=8080, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +10:37:32.214 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +10:37:32.216 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +10:37:32.216 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +10:37:32.216 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +10:37:32.216 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +10:37:32.216 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +10:37:32.216 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->8a275618-f82d-414d-ae23-7ee8b1ccfecb +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@65b882ec[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1638] +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@30b2fca1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +10:37:32.217 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056876241_117.143.60.138_55852 +10:37:32.218 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5b7b54f5[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 2172] +10:37:32.218 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->8a275618-f82d-414d-ae23-7ee8b1ccfecb +10:37:32.218 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +10:37:32.220 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +10:37:32.220 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop diff --git a/logs/cloud-gen/error.2024-09-16.log b/logs/cloud-gen/error.2024-09-16.log deleted file mode 100644 index d50a635..0000000 --- a/logs/cloud-gen/error.2024-09-16.log +++ /dev/null @@ -1,146 +0,0 @@ -20:12:23.510 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanDefinitionStoreException: I/O failure while processing configuration class [com.muyu.gen.controller.GenController] - at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:251) - at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) - at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:314) - at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:246) - at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:197) - at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:165) - at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:417) - at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:290) - at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:349) - at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:118) - at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:788) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:606) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.gen.CloudGenApplication.main(CloudGenApplication.java:18) -Caused by: java.io.FileNotFoundException: class path resource [com/muyu/common/core/web/controller/BaseController.class] cannot be opened because it does not exist - at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:215) - at org.springframework.core.type.classreading.SimpleMetadataReader.getClassReader(SimpleMetadataReader.java:54) - at org.springframework.core.type.classreading.SimpleMetadataReader.(SimpleMetadataReader.java:48) - at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:103) - at org.springframework.boot.type.classreading.ConcurrentReferenceCachingMetadataReaderFactory.createMetadataReader(ConcurrentReferenceCachingMetadataReaderFactory.java:86) - at org.springframework.boot.type.classreading.ConcurrentReferenceCachingMetadataReaderFactory.getMetadataReader(ConcurrentReferenceCachingMetadataReaderFactory.java:73) - at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:81) - at org.springframework.context.annotation.ConfigurationClassParser.asSourceClass(ConfigurationClassParser.java:630) - at org.springframework.context.annotation.ConfigurationClassParser$SourceClass.getSuperClass(ConfigurationClassParser.java:943) - at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:351) - at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:246) - ... 18 common frames omitted -20:28:47.863 [http-nio-9202-exec-8] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/gen/importTable',发生未知异常. -java.lang.IllegalArgumentException: Name for argument of type [java.lang.String] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag. - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.updateNamedValueInfo(AbstractNamedValueMethodArgumentResolver.java:187) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.getNamedValueInfo(AbstractNamedValueMethodArgumentResolver.java:162) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:108) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -20:28:57.080 [http-nio-9202-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/gen/importTable',发生未知异常. -java.lang.IllegalArgumentException: Name for argument of type [java.lang.String] not specified, and parameter name information not available via reflection. Ensure that the compiler uses the '-parameters' flag. - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.updateNamedValueInfo(AbstractNamedValueMethodArgumentResolver.java:187) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.getNamedValueInfo(AbstractNamedValueMethodArgumentResolver.java:162) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:108) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) diff --git a/logs/cloud-gen/error.log b/logs/cloud-gen/error.log index 84c94a9..f4d6da7 100644 --- a/logs/cloud-gen/error.log +++ b/logs/cloud-gen/error.log @@ -1,886 +1,4 @@ -15:03:40.914 [http-nio-9202-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/gen/selDbNameAll',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll - at org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:229) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:100) - at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) - at org.apache.ibatis.util.MapUtil.computeIfAbsent(MapUtil.java:36) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:90) - at jdk.proxy2/jdk.proxy2.$Proxy128.selDbNameAll(Unknown Source) - at com.muyu.gen.service.GenTableServiceImpl.selDbNameAll(GenTableServiceImpl.java:438) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.selDbNameAll() - at com.muyu.gen.controller.GenController.selDbNameAll(GenController.java:217) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.selDbNameAll() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:03:49.536 [http-nio-9202-exec-4] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/gen/importTable',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'dbName' for method parameter type String is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:220) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:196) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:126) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:04:45.471 [http-nio-9202-exec-10] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/gen/selDbNameAll',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll - at org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:229) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:100) - at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) - at org.apache.ibatis.util.MapUtil.computeIfAbsent(MapUtil.java:36) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:90) - at jdk.proxy2/jdk.proxy2.$Proxy128.selDbNameAll(Unknown Source) - at com.muyu.gen.service.GenTableServiceImpl.selDbNameAll(GenTableServiceImpl.java:438) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.selDbNameAll() - at com.muyu.gen.controller.GenController.selDbNameAll(GenController.java:217) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.selDbNameAll() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:10:23.964 [http-nio-9202-exec-2] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/gen/selDbNameAll',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll - at org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:229) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:100) - at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) - at org.apache.ibatis.util.MapUtil.computeIfAbsent(MapUtil.java:36) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:90) - at jdk.proxy2/jdk.proxy2.$Proxy128.selDbNameAll(Unknown Source) - at com.muyu.gen.service.GenTableServiceImpl.selDbNameAll(GenTableServiceImpl.java:438) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.selDbNameAll() - at com.muyu.gen.controller.GenController.selDbNameAll(GenController.java:217) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.selDbNameAll() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:11:06.274 [http-nio-9202-exec-7] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/gen/selDbNameAll',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll - at org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:229) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:100) - at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) - at org.apache.ibatis.util.MapUtil.computeIfAbsent(MapUtil.java:36) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:90) - at jdk.proxy2/jdk.proxy2.$Proxy128.selDbNameAll(Unknown Source) - at com.muyu.gen.service.GenTableServiceImpl.selDbNameAll(GenTableServiceImpl.java:438) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.selDbNameAll() - at com.muyu.gen.controller.GenController.selDbNameAll(GenController.java:217) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.selDbNameAll() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:11:22.334 [http-nio-9202-exec-8] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/gen/importTable',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'dbName' for method parameter type String is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:220) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:196) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:126) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:12:49.353 [http-nio-9202-exec-5] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/gen/importTable',发生系统异常. -org.springframework.web.bind.MissingServletRequestParameterException: Required request parameter 'dbName' for method parameter type String is not present - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValueInternal(RequestParamMethodArgumentResolver.java:220) - at org.springframework.web.method.annotation.RequestParamMethodArgumentResolver.handleMissingValue(RequestParamMethodArgumentResolver.java:196) - at org.springframework.web.method.annotation.AbstractNamedValueMethodArgumentResolver.resolveArgument(AbstractNamedValueMethodArgumentResolver.java:126) - at org.springframework.web.method.support.HandlerMethodArgumentResolverComposite.resolveArgument(HandlerMethodArgumentResolverComposite.java:122) - at org.springframework.web.method.support.InvocableHandlerMethod.getMethodArgumentValues(InvocableHandlerMethod.java:224) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:178) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:31:07.716 [http-nio-9202-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/gen/selDbNameAll',发生未知异常. -org.apache.ibatis.binding.BindingException: Invalid bound statement (not found): com.muyu.gen.mapper.GenTableMapper.selDbNameAll - at org.apache.ibatis.binding.MapperMethod$SqlCommand.(MapperMethod.java:229) - at com.baomidou.mybatisplus.core.override.MybatisMapperMethod.(MybatisMapperMethod.java:50) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.lambda$cachedInvoker$0(MybatisMapperProxy.java:100) - at java.base/java.util.concurrent.ConcurrentHashMap.computeIfAbsent(ConcurrentHashMap.java:1708) - at org.apache.ibatis.util.MapUtil.computeIfAbsent(MapUtil.java:36) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.cachedInvoker(MybatisMapperProxy.java:98) - at com.baomidou.mybatisplus.core.override.MybatisMapperProxy.invoke(MybatisMapperProxy.java:90) - at jdk.proxy2/jdk.proxy2.$Proxy128.selDbNameAll(Unknown Source) - at com.muyu.gen.service.GenTableServiceImpl.selDbNameAll(GenTableServiceImpl.java:438) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:716) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.selDbNameAll() - at com.muyu.gen.controller.GenController.selDbNameAll(GenController.java:217) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.selDbNameAll() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:33:59.575 [http-nio-9202-exec-8] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:34:16.944 [http-nio-9202-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleServiceException,67] - 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] -com.muyu.common.core.exception.ServiceException: 导入失败: -### Error updating database. Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -### The error may exist in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-gen\target\classes\mapper\generator\GenTableMapper.xml] -### The error may involve com.muyu.gen.mapper.GenTableMapper.insertGenTable-Inline -### The error occurred while setting parameters -### SQL: insert into gen_table ( db_name, table_name, table_comment, class_name, package_name, module_name, business_name, function_name, function_author, create_by, create_time )values( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, sysdate() ) -### Cause: java.sql.SQLSyntaxErrorException: Unknown column 'db_name' in 'field list' -; bad SQL grammar [] - at com.muyu.gen.service.GenTableServiceImpl.importGenTable(GenTableServiceImpl.java:188) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:123) - at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:392) - at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:119) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.service.GenTableServiceImpl$$SpringCGLIB$$0.importGenTable() - at com.muyu.gen.controller.GenController.importTableSave(GenController.java:111) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:354) - at org.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:196) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:163) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.aspectj.AspectJAfterThrowingAdvice.invoke(AspectJAfterThrowingAdvice.java:64) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.AfterReturningAdviceInterceptor.invoke(AfterReturningAdviceInterceptor.java:57) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.adapter.MethodBeforeAdviceInterceptor.invoke(MethodBeforeAdviceInterceptor.java:58) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:173) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:97) - at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:184) - at org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.proceed(CglibAopProxy.java:768) - at org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:720) - at com.muyu.gen.controller.GenController$$SpringCGLIB$$0.importTableSave() - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doPost(FrameworkServlet.java:914) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:590) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -15:42:19.382 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 10.0.1.97 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 594800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e05fc17[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@6f6c6077, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fc5563d, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@286090c}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -15:42:21.034 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. - -Reason: Failed to determine a suitable driver class - - -Action: - -Consider the following: - If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. - If you have database settings to be loaded from a particular profile you may need to activate it (the profiles dev are currently active). - -15:43:23.050 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 10.0.1.97 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 988600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3e05fc17[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@4fc5563d, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@286090c, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@31120021}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -15:43:24.650 [main] ERROR o.s.b.d.LoggingFailureAnalysisReporter - [report,40] - - -*************************** -APPLICATION FAILED TO START -*************************** - -Description: - -Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. - -Reason: Failed to determine a suitable driver class - - -Action: - -Consider the following: - If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. - If you have database settings to be loaded from a particular profile you may need to activate it (the profiles dev are currently active). - -15:44:26.448 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed +08:47:46.473 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项,xxl-job共享配置[application-xxl-config] at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) @@ -914,7 +32,7 @@ Caused by: java.lang.RuntimeException: 请在bootstrap.yml当中配置shared-con at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) ... 20 common frames omitted -15:46:26.071 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed +08:48:16.533 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'xxlJobExecutor' defined in class path resource [com/muyu/common/xxl/XXLJobConfig.class]: Failed to instantiate [com.xxl.job.core.executor.impl.XxlJobSpringExecutor]: Factory method 'xxlJobExecutor' threw exception with message: 请在bootstrap.yml当中配置shared-configs项,xxl-job共享配置[application-xxl-config] at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) diff --git a/logs/cloud-gen/info.2024-09-16.log b/logs/cloud-gen/info.2024-09-16.log index a69a8b7..dbe778a 100644 --- a/logs/cloud-gen/info.2024-09-16.log +++ b/logs/cloud-gen/info.2024-09-16.log @@ -1,319 +1,81 @@ -20:12:23.318 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:42.223 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:44.658 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:13:44.659 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:13:44.728 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:13:45.803 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:13:48.451 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:13:49.635 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2e5d40a4[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:13:49.636 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@56aacc7b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:13:49.637 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@112d94d[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:13:49.895 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -20:13:49.960 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:13:49.969 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:13:49.970 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:13:49.976 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:13:49.976 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:13:49.976 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:13:50.508 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 02e6c4f7-112d-4a22-9721-d69a9df3d7f9 -20:13:50.509 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->02e6c4f7-112d-4a22-9721-d69a9df3d7f9 -20:13:50.509 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02e6c4f7-112d-4a22-9721-d69a9df3d7f9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:13:50.509 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02e6c4f7-112d-4a22-9721-d69a9df3d7f9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:13:50.509 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02e6c4f7-112d-4a22-9721-d69a9df3d7f9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:13:50.509 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02e6c4f7-112d-4a22-9721-d69a9df3d7f9] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:13:50.509 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:13:50.819 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02e6c4f7-112d-4a22-9721-d69a9df3d7f9] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726488832281_39.144.43.42_62466 -20:13:50.819 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02e6c4f7-112d-4a22-9721-d69a9df3d7f9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:50.819 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02e6c4f7-112d-4a22-9721-d69a9df3d7f9] Notify connected event to listeners. -20:13:50.819 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [02e6c4f7-112d-4a22-9721-d69a9df3d7f9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801138d88 -20:13:50.820 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:13:50.821 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.0.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:13:50.886 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.0.139:9202 register finished -20:13:51.126 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 12.749 seconds (process running for 13.426) -20:13:51.143 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:13:51.145 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:13:51.147 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -20:13:51.160 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:13:51.160 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -20:13:51.160 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -20:13:51.160 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -20:13:51.160 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -20:13:51.160 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -20:13:51.160 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -20:13:51.160 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -20:13:51.243 [RMI TCP Connection(1)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:13:51.285 [RMI TCP Connection(2)-192.168.0.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -20:13:52.198 [RMI TCP Connection(2)-192.168.0.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@6bc53748 -20:13:52.210 [RMI TCP Connection(2)-192.168.0.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -20:22:24.740 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:22:24.846 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.0.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -20:22:24.847 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:22:24.847 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:22:24.847 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:22:24.847 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:22:24.848 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:22:24.855 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:22:24.855 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.0.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:22:24.926 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:22:24.927 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:22:24.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:22:24.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:22:24.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:22:24.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:22:24.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:22:24.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:22:24.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:22:24.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:22:24.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:22:24.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:22:24.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->02e6c4f7-112d-4a22-9721-d69a9df3d7f9 -20:22:24.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5e0ed380[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 171] -20:22:24.930 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:22:24.930 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6de92c3[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:22:24.930 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726488832281_39.144.43.42_62466 -20:22:24.933 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4449b445[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 112] -20:22:24.933 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->02e6c4f7-112d-4a22-9721-d69a9df3d7f9 -20:22:24.933 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:22:24.933 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:22:24.934 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:22:24.936 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -20:22:25.732 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -20:27:48.772 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:27:51.219 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:27:51.219 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:27:51.308 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:27:53.000 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:27:55.617 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:27:56.881 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@434896b0[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:27:56.881 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2e5d40a4[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:27:56.881 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@56aacc7b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:27:57.144 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -20:27:57.184 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:27:57.184 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:27:57.185 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:27:57.190 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:27:57.195 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:27:57.195 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:27:57.903 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 79f7b632-5650-4b97-a7bf-33f8b89c8c60 -20:27:57.906 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->79f7b632-5650-4b97-a7bf-33f8b89c8c60 -20:27:57.906 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [79f7b632-5650-4b97-a7bf-33f8b89c8c60] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:27:57.906 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [79f7b632-5650-4b97-a7bf-33f8b89c8c60] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:27:57.907 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [79f7b632-5650-4b97-a7bf-33f8b89c8c60] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:27:57.907 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [79f7b632-5650-4b97-a7bf-33f8b89c8c60] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:27:57.908 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:27:58.110 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [79f7b632-5650-4b97-a7bf-33f8b89c8c60] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489679657_39.144.43.42_62478 -20:27:58.111 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [79f7b632-5650-4b97-a7bf-33f8b89c8c60] Notify connected event to listeners. -20:27:58.111 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [79f7b632-5650-4b97-a7bf-33f8b89c8c60] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:27:58.111 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [79f7b632-5650-4b97-a7bf-33f8b89c8c60] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x00000008011292a0 -20:27:58.111 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:27:58.113 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.0.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:27:58.191 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.0.139:9202 register finished -20:27:58.329 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 12.848 seconds (process running for 13.431) -20:27:58.337 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:27:58.338 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:27:58.339 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -20:27:58.345 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:27:58.345 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -20:27:58.345 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -20:27:58.346 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -20:27:58.346 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -20:27:58.346 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -20:27:58.346 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -20:27:58.346 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -20:27:58.476 [RMI TCP Connection(4)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:27:58.498 [RMI TCP Connection(5)-192.168.0.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -20:27:59.131 [RMI TCP Connection(5)-192.168.0.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@15024a55 -20:27:59.140 [RMI TCP Connection(5)-192.168.0.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -20:31:10.744 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:31:10.783 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.0.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -20:31:10.783 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:31:10.784 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:31:10.784 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:31:10.784 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:31:10.784 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:31:10.790 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:31:10.791 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.0.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:31:10.822 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:31:10.824 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:31:10.824 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->79f7b632-5650-4b97-a7bf-33f8b89c8c60 -20:31:10.825 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4f7e2973[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 64] -20:31:10.826 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:31:10.826 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@66da71c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:31:10.826 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489679657_39.144.43.42_62478 -20:31:10.828 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1ab79bd5[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 50] -20:31:10.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->79f7b632-5650-4b97-a7bf-33f8b89c8c60 -20:31:10.829 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:31:10.829 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:31:10.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:31:10.831 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -20:31:11.319 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -20:31:41.484 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:31:43.294 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:31:43.294 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:31:43.356 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:31:44.188 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:31:45.620 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:31:46.406 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1fb8b89e[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:31:46.407 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@763960eb[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:31:46.407 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7152ee36[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:31:46.430 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -20:31:46.430 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -20:31:46.621 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -20:31:46.625 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:31:46.626 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:31:46.626 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:31:46.631 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:31:46.635 [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:46.635 [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:47.276 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 880367c5-9d06-4283-9969-2bb7ed33951e -20:31:47.277 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->880367c5-9d06-4283-9969-2bb7ed33951e -20:31:47.278 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [880367c5-9d06-4283-9969-2bb7ed33951e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:31:47.278 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [880367c5-9d06-4283-9969-2bb7ed33951e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:31:47.278 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [880367c5-9d06-4283-9969-2bb7ed33951e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:31:47.278 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [880367c5-9d06-4283-9969-2bb7ed33951e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:31:47.278 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:31:47.434 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [880367c5-9d06-4283-9969-2bb7ed33951e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489909026_39.144.43.42_62496 -20:31:47.435 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [880367c5-9d06-4283-9969-2bb7ed33951e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:31:47.435 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [880367c5-9d06-4283-9969-2bb7ed33951e] Notify connected event to listeners. -20:31:47.435 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [880367c5-9d06-4283-9969-2bb7ed33951e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x00000008011392a0 -20:31:47.435 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:31:47.437 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.0.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:31:47.476 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.0.139:9202 register finished -20:31:47.581 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 8.776 seconds (process running for 9.581) -20:31:47.590 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:31:47.590 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:31:47.591 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -20:31:47.598 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:31:47.599 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -20:31:47.599 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -20:31:47.599 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -20:31:47.599 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -20:31:47.600 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -20:31:47.600 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -20:31:47.600 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -20:31:47.964 [RMI TCP Connection(6)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:31:47.984 [RMI TCP Connection(7)-192.168.0.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -20:31:48.593 [RMI TCP Connection(7)-192.168.0.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@e563c23 -20:31:48.601 [RMI TCP Connection(7)-192.168.0.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -20:32:14.369 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:32:14.418 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.0.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -20:32:14.418 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:32:14.419 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:32:14.419 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:32:14.419 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:32:14.419 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:32:14.424 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:32:14.425 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.0.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:32:14.464 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:32:14.465 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:32:14.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->880367c5-9d06-4283-9969-2bb7ed33951e -20:32:14.466 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@21e2d0bb[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 9] -20:32:14.466 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:32:14.466 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@577d99a0[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:32:14.466 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489909026_39.144.43.42_62496 -20:32:14.468 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@50061e0f[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 15] -20:32:14.468 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->880367c5-9d06-4283-9969-2bb7ed33951e -20:32:14.468 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:32:14.468 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:32:14.468 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:32:14.470 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -20:32:15.022 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -21:04:32.315 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -21:04:34.858 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -21:04:34.858 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -21:04:34.972 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -21:04:36.273 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -21:04:38.559 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -21:04:39.899 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@22726bc7[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -21:04:39.900 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@294a150c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -21:04:39.900 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2fef413c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -21:04:40.148 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -21:04:40.174 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -21:04:40.174 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -21:04:40.175 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -21:04:40.178 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -21:04:40.181 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -21:04:40.181 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -21:04:40.359 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 402448de-bb75-4090-827c-fc333f501d1c -21:04:40.362 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->402448de-bb75-4090-827c-fc333f501d1c -21:04:40.362 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [402448de-bb75-4090-827c-fc333f501d1c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -21:04:40.362 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [402448de-bb75-4090-827c-fc333f501d1c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -21:04:40.362 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [402448de-bb75-4090-827c-fc333f501d1c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -21:04:40.363 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [402448de-bb75-4090-827c-fc333f501d1c] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -21:04:40.363 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -21:04:40.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [402448de-bb75-4090-827c-fc333f501d1c] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726491882167_39.144.43.42_63064 -21:04:40.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [402448de-bb75-4090-827c-fc333f501d1c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -21:04:40.659 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [402448de-bb75-4090-827c-fc333f501d1c] Notify connected event to listeners. -21:04:40.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [402448de-bb75-4090-827c-fc333f501d1c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000000080113f060 -21:04:40.659 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -21:04:40.660 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.0.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -21:04:40.738 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.0.139:9202 register finished -21:04:40.863 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 12.004 seconds (process running for 12.627) -21:04:40.872 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -21:04:40.873 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -21:04:40.874 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -21:04:40.880 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -21:04:40.880 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -21:04:40.880 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -21:04:40.881 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -21:04:40.881 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -21:04:40.881 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -21:04:40.881 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -21:04:40.881 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -21:04:41.394 [RMI TCP Connection(6)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -21:04:41.419 [RMI TCP Connection(7)-192.168.0.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -21:04:42.359 [RMI TCP Connection(7)-192.168.0.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@3122c28e -21:04:42.368 [RMI TCP Connection(7)-192.168.0.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -21:04:58.760 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -21:04:58.817 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.0.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -21:04:58.818 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -21:04:58.818 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -21:04:58.818 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -21:04:58.819 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -21:04:58.819 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -21:04:58.825 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -21:04:58.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.0.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -21:04:58.894 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -21:04:58.895 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -21:04:58.895 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -21:04:58.895 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -21:04:58.895 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -21:04:58.896 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -21:04:58.896 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -21:04:58.896 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -21:04:58.896 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -21:04:58.896 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -21:04:58.896 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -21:04:58.896 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -21:04:58.896 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->402448de-bb75-4090-827c-fc333f501d1c -21:04:58.897 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@47462a78[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 6] -21:04:58.897 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -21:04:58.897 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@e8e117f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -21:04:58.897 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726491882167_39.144.43.42_63064 -21:04:58.899 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@26a50e66[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 13] -21:04:58.899 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->402448de-bb75-4090-827c-fc333f501d1c -21:04:58.899 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -21:04:58.899 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -21:04:58.900 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -21:04:58.901 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -21:04:59.729 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. +19:17:54.078 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +19:17:58.033 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"] +19:17:58.035 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +19:17:58.036 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +19:17:58.146 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +19:18:00.242 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +19:18:03.894 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. +19:18:05.973 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@f507d33[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] +19:18:05.973 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1fc02a84[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] +19:18:05.973 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4c04188[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] +19:18:06.122 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9202"] +19:18:06.320 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +19:18:06.321 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +19:18:06.321 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +19:18:06.331 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +19:18:06.336 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +19:18:06.336 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +19:18:06.338 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 +19:18:06.437 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 6ca39592-e92d-4246-a328-59efb692022b +19:18:06.441 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->6ca39592-e92d-4246-a328-59efb692022b +19:18:06.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ca39592-e92d-4246-a328-59efb692022b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +19:18:06.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ca39592-e92d-4246-a328-59efb692022b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +19:18:06.441 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ca39592-e92d-4246-a328-59efb692022b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +19:18:06.442 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ca39592-e92d-4246-a328-59efb692022b] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} +19:18:06.442 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +19:18:06.537 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ca39592-e92d-4246-a328-59efb692022b] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726485487849_117.143.60.138_52383 +19:18:06.537 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ca39592-e92d-4246-a328-59efb692022b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +19:18:06.537 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ca39592-e92d-4246-a328-59efb692022b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x000001868146a1d8 +19:18:06.537 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [6ca39592-e92d-4246-a328-59efb692022b] Notify connected event to listeners. +19:18:06.538 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +19:18:06.538 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='10.113.37.82', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +19:18:06.564 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 10.113.37.82:9202 register finished +19:18:06.760 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 16.263 seconds (process running for 17.051) +19:18:06.774 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +19:18:06.775 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +19:18:06.777 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one +19:18:06.790 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 +19:18:06.791 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP +19:18:06.792 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one +19:18:06.792 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 +19:18:06.793 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP +19:18:06.794 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one +19:18:06.794 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 +19:18:06.794 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP +19:18:07.214 [RMI TCP Connection(5)-192.168.136.1] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... +19:18:07.681 [RMI TCP Connection(5)-192.168.136.1] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@ae5b8c7 +19:18:07.694 [RMI TCP Connection(5)-192.168.136.1] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. +19:18:09.022 [http-nio-9202-exec-2] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +20:10:53.811 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. +20:10:53.827 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.136.1:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] +20:10:53.827 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. +20:10:53.827 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. +20:10:53.829 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. +20:10:53.829 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. +20:10:53.830 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. +20:10:53.839 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:10:53.839 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='10.113.37.82', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:10:53.856 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:10:53.858 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:10:53.859 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:10:53.859 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:10:53.859 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:10:53.859 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:10:53.859 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:10:53.859 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:10:53.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:10:53.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:10:53.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:10:53.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:10:53.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->6ca39592-e92d-4246-a328-59efb692022b +20:10:53.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5591486f[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1053] +20:10:53.860 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:10:53.861 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@54aae3f2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:10:53.861 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726485487849_117.143.60.138_52383 +20:10:53.864 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@22dbf38f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 638] +20:10:53.865 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->6ca39592-e92d-4246-a328-59efb692022b +20:10:53.865 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:10:53.865 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:10:53.865 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +20:10:53.870 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... +20:10:53.990 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. diff --git a/logs/cloud-gen/info.log b/logs/cloud-gen/info.log index 6204dda..18555ba 100644 --- a/logs/cloud-gen/info.log +++ b/logs/cloud-gen/info.log @@ -1,269 +1,14 @@ -14:54:50.905 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:54:53.701 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:54:53.702 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:54:53.892 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:54:55.231 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:54:58.104 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -14:54:59.413 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1c298769[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -14:54:59.415 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4cb1af3f[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -14:54:59.416 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@56034552[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -14:54:59.738 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -14:54:59.739 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -14:54:59.740 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -14:54:59.740 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -14:54:59.746 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -14:54:59.751 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -14:54:59.751 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -14:54:59.945 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c901ae8f-f0ef-4f98-b6c6-8e14ace3afec -14:54:59.946 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->c901ae8f-f0ef-4f98-b6c6-8e14ace3afec -14:54:59.947 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c901ae8f-f0ef-4f98-b6c6-8e14ace3afec] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:54:59.947 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c901ae8f-f0ef-4f98-b6c6-8e14ace3afec] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:54:59.947 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c901ae8f-f0ef-4f98-b6c6-8e14ace3afec] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:54:59.948 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c901ae8f-f0ef-4f98-b6c6-8e14ace3afec] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -14:54:59.949 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:55:00.149 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c901ae8f-f0ef-4f98-b6c6-8e14ace3afec] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556102088_117.136.120.204_26265 -14:55:00.149 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c901ae8f-f0ef-4f98-b6c6-8e14ace3afec] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:55:00.149 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c901ae8f-f0ef-4f98-b6c6-8e14ace3afec] Notify connected event to listeners. -14:55:00.149 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c901ae8f-f0ef-4f98-b6c6-8e14ace3afec] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x00000008011390a0 -14:55:00.149 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -14:55:00.150 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -14:55:00.193 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.245.139:9202 register finished -14:55:00.339 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 12.88 seconds (process running for 13.501) -14:55:00.348 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -14:55:00.348 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -14:55:00.349 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -14:55:00.357 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -14:55:00.358 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -14:55:00.358 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -14:55:00.358 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -14:55:00.359 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -14:55:00.359 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -14:55:00.359 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -14:55:00.359 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -14:55:00.564 [RMI TCP Connection(9)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -14:55:00.589 [RMI TCP Connection(8)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -14:55:01.306 [RMI TCP Connection(8)-192.168.245.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@2d5de464 -14:55:01.310 [RMI TCP Connection(8)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:06:12.619 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -15:06:12.690 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -15:06:12.690 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -15:06:12.691 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -15:06:12.691 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -15:06:12.691 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -15:06:12.691 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -15:06:12.697 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:06:12.697 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:06:12.759 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:06:12.760 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:06:12.760 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:06:12.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:06:12.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:06:12.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:06:12.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:06:12.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:06:12.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:06:12.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:06:12.761 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:06:12.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:06:12.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c901ae8f-f0ef-4f98-b6c6-8e14ace3afec -15:06:12.762 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@42eec591[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 223] -15:06:12.762 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:06:12.762 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@41b9d92[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:06:12.762 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556102088_117.136.120.204_26265 -15:06:12.765 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@771cea1[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 147] -15:06:12.765 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c901ae8f-f0ef-4f98-b6c6-8e14ace3afec -15:06:12.765 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:06:12.765 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:06:12.766 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:06:12.768 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -15:06:13.459 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -15:08:15.251 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:08:18.061 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:08:18.062 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:08:18.140 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:08:19.744 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:08:22.162 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -15:08:23.352 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@672c6b93[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -15:08:23.352 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5d6e77a4[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -15:08:23.352 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5bf9bb2[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -15:08:23.661 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -15:08:23.700 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:08:23.701 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:08:23.701 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:08:23.705 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:08:23.710 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:08:23.710 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:08:23.847 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ef88eb00-4150-4239-870f-c3a480a77131 -15:08:23.850 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ef88eb00-4150-4239-870f-c3a480a77131 -15:08:23.850 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef88eb00-4150-4239-870f-c3a480a77131] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:08:23.850 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef88eb00-4150-4239-870f-c3a480a77131] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:08:23.851 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef88eb00-4150-4239-870f-c3a480a77131] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:08:23.852 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef88eb00-4150-4239-870f-c3a480a77131] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:08:23.852 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:08:24.083 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef88eb00-4150-4239-870f-c3a480a77131] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556906046_117.136.120.204_26278 -15:08:24.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef88eb00-4150-4239-870f-c3a480a77131] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:24.084 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef88eb00-4150-4239-870f-c3a480a77131] Notify connected event to listeners. -15:08:24.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ef88eb00-4150-4239-870f-c3a480a77131] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801127d10 -15:08:24.084 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:08:24.085 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:08:24.141 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.245.139:9202 register finished -15:08:24.283 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 12.547 seconds (process running for 13.147) -15:08:24.291 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:08:24.291 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:08:24.292 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -15:08:24.297 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:08:24.297 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -15:08:24.297 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -15:08:24.297 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -15:08:24.298 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -15:08:24.298 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -15:08:24.298 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -15:08:24.298 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -15:08:24.729 [RMI TCP Connection(7)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:08:24.755 [RMI TCP Connection(6)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -15:08:25.607 [RMI TCP Connection(6)-192.168.245.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@11553bfd -15:08:25.610 [RMI TCP Connection(6)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:32:43.474 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -15:32:43.529 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -15:32:43.529 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -15:32:43.529 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -15:32:43.530 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -15:32:43.530 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -15:32:43.530 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -15:32:43.536 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:32:43.536 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:32:43.576 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:32:43.578 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:32:43.578 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:32:43.578 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:32:43.578 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:32:43.578 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:32:43.579 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:32:43.579 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:32:43.579 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:32:43.579 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:32:43.579 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:32:43.580 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:32:43.580 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ef88eb00-4150-4239-870f-c3a480a77131 -15:32:43.580 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6778d8f7[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 485] -15:32:43.580 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:32:43.580 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5e11eb4[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:32:43.581 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556906046_117.136.120.204_26278 -15:32:43.583 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@46d9c7ed[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 300] -15:32:43.583 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ef88eb00-4150-4239-870f-c3a480a77131 -15:32:43.583 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:32:43.583 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:32:43.584 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:32:43.585 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -15:32:45.494 [com.alibaba.nacos.client.Worker.0] INFO c.a.n.c.a.r.i.CredentialWatcher - [loadCredentialFromEnv,189] - null No credential found -15:32:53.589 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -15:33:05.007 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:33:07.490 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:33:07.490 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:33:07.582 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:33:08.889 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:33:11.211 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -15:33:12.577 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@22726bc7[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -15:33:12.577 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@294a150c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -15:33:12.577 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2fef413c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -15:33:12.795 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -15:33:12.822 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:33:12.823 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:33:12.824 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:33:12.829 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:33:12.832 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:33:12.833 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:33:12.993 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f8e935bd-d362-4936-86f7-f48296960e1f -15:33:12.994 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->f8e935bd-d362-4936-86f7-f48296960e1f -15:33:12.994 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:33:12.994 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:33:12.995 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:33:12.995 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:33:12.995 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:33:13.164 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558395145_117.136.120.204_26607 -15:33:13.164 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:33:13.164 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Notify connected event to listeners. -15:33:13.164 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:33:13.164 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$632/0x0000000801138d88 -15:33:13.165 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-gen with instance Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:33:13.207 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-gen 192.168.245.139:9202 register finished -15:33:13.453 [main] INFO c.m.g.CloudGenApplication - [logStarted,56] - Started CloudGenApplication in 11.613 seconds (process running for 12.176) -15:33:13.462 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:33:13.462 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:33:13.464 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen-dev.yml+DEFAULT_GROUP+one -15:33:13.471 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:33:13.471 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen-dev.yml, group=DEFAULT_GROUP -15:33:13.472 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen.yml+DEFAULT_GROUP+one -15:33:13.472 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen.yml, group=DEFAULT_GROUP, cnt=1 -15:33:13.472 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen.yml, group=DEFAULT_GROUP -15:33:13.472 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-gen+DEFAULT_GROUP+one -15:33:13.472 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-gen, group=DEFAULT_GROUP, cnt=1 -15:33:13.472 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-gen, group=DEFAULT_GROUP -15:33:13.915 [RMI TCP Connection(4)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:33:13.940 [RMI TCP Connection(3)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,110] - HikariPool-1 - Starting... -15:33:14.642 [RMI TCP Connection(3)-192.168.245.139] INFO c.z.h.p.HikariPool - [checkFailFast,565] - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@276060e3 -15:33:14.646 [RMI TCP Connection(3)-192.168.245.139] INFO c.z.h.HikariDataSource - [getConnection,123] - HikariPool-1 - Start completed. -15:33:59.657 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:33:59.658 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:33:59.693 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:59.693 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:34:00.287 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Receive server push request, request = NotifySubscriberRequest, requestId = 12063 -15:34:00.287 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f8e935bd-d362-4936-86f7-f48296960e1f] Ack server push request, request = NotifySubscriberRequest, requestId = 12063 -15:37:58.228 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -15:37:58.284 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-gen', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -15:37:58.285 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -15:37:58.285 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -15:37:58.285 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -15:37:58.286 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -15:37:58.286 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -15:37:58.292 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:37:58.293 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-gen with instance: Instance{instanceId='null', ip='192.168.245.139', port=9202, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:37:58.337 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:37:58.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:37:58.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:37:58.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:37:58.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:37:58.338 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f8e935bd-d362-4936-86f7-f48296960e1f -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@51c64129[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 94] -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4d9d7e4b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:37:58.339 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558395145_117.136.120.204_26607 -15:37:58.342 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7878c3f5[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 66] -15:37:58.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f8e935bd-d362-4936-86f7-f48296960e1f -15:37:58.342 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:37:58.342 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:37:58.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:37:58.345 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,350] - HikariPool-1 - Shutdown initiated... -15:37:58.786 [com.alibaba.nacos.client.Worker.8] INFO c.a.n.c.a.r.i.CredentialWatcher - [loadCredentialFromEnv,189] - null No credential found -15:37:58.842 [SpringApplicationShutdownHook] INFO c.z.h.HikariDataSource - [close,352] - HikariPool-1 - Shutdown completed. -15:42:19.140 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:42:19.491 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:10.0.1.97 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:42:20.755 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:42:20.755 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:42:20.806 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:42:20.997 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:43:22.792 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:43:23.158 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:10.0.1.97 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:43:24.361 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:43:24.361 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:43:24.416 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:43:24.617 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:44:22.738 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:44:24.242 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:44:24.243 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:44:24.296 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:44:25.052 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:44:26.421 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -15:46:22.296 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:46:23.846 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:46:23.846 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:46:23.902 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:46:24.666 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:46:26.044 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] +08:47:41.178 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +08:47:43.320 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9202"] +08:47:43.322 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +08:47:43.322 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +08:47:43.391 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +08:47:44.530 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +08:47:46.433 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] +08:48:11.112 [main] INFO c.m.g.CloudGenApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +08:48:13.326 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9203"] +08:48:13.329 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +08:48:13.329 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +08:48:13.410 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +08:48:14.612 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +08:48:16.495 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] diff --git a/logs/cloud-system/error.2024-09-16.log b/logs/cloud-system/error.2024-09-16.log index 9496ebb..631932f 100644 --- a/logs/cloud-system/error.2024-09-16.log +++ b/logs/cloud-system/error.2024-09-16.log @@ -1,38 +1,4 @@ -20:12:29.236 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanDefinitionStoreException: I/O failure while processing configuration class [com.muyu.system.controller.SysConfigController] - at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:251) - at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:189) - at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:314) - at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:246) - at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:197) - at org.springframework.context.annotation.ConfigurationClassParser.parse(ConfigurationClassParser.java:165) - at org.springframework.context.annotation.ConfigurationClassPostProcessor.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:417) - at org.springframework.context.annotation.ConfigurationClassPostProcessor.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:290) - at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanDefinitionRegistryPostProcessors(PostProcessorRegistrationDelegate.java:349) - at org.springframework.context.support.PostProcessorRegistrationDelegate.invokeBeanFactoryPostProcessors(PostProcessorRegistrationDelegate.java:118) - at org.springframework.context.support.AbstractApplicationContext.invokeBeanFactoryPostProcessors(AbstractApplicationContext.java:788) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:606) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -Caused by: java.io.FileNotFoundException: class path resource [com/muyu/common/core/web/controller/BaseController.class] cannot be opened because it does not exist - at org.springframework.core.io.ClassPathResource.getInputStream(ClassPathResource.java:215) - at org.springframework.core.type.classreading.SimpleMetadataReader.getClassReader(SimpleMetadataReader.java:54) - at org.springframework.core.type.classreading.SimpleMetadataReader.(SimpleMetadataReader.java:48) - at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:103) - at org.springframework.boot.type.classreading.ConcurrentReferenceCachingMetadataReaderFactory.createMetadataReader(ConcurrentReferenceCachingMetadataReaderFactory.java:86) - at org.springframework.boot.type.classreading.ConcurrentReferenceCachingMetadataReaderFactory.getMetadataReader(ConcurrentReferenceCachingMetadataReaderFactory.java:73) - at org.springframework.core.type.classreading.SimpleMetadataReaderFactory.getMetadataReader(SimpleMetadataReaderFactory.java:81) - at org.springframework.context.annotation.ConfigurationClassParser.asSourceClass(ConfigurationClassParser.java:630) - at org.springframework.context.annotation.ConfigurationClassParser$SourceClass.getSuperClass(ConfigurationClassParser.java:943) - at org.springframework.context.annotation.ConfigurationClassParser.doProcessConfigurationClass(ConfigurationClassParser.java:351) - at org.springframework.context.annotation.ConfigurationClassParser.processConfigurationClass(ConfigurationClassParser.java:246) - ... 18 common frames omitted -20:14:05.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). +19:18:21.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) @@ -47,12 +13,12 @@ org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connec at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) + at java.base/java.lang.Thread.run(Thread.java:842) Caused by: java.net.ConnectException: Connection refused: no further information at java.base/sun.nio.ch.Net.pollConnect(Native Method) at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) + at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:547) + at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602) at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) at java.base/java.net.Socket.connect(Socket.java:633) at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) @@ -62,232 +28,616 @@ Caused by: java.net.ConnectException: Connection refused: no further information at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) ... 12 common frames omitted -20:14:10.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:15.685 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:20.826 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:25.963 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:31.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:36.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:41.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:46.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:51.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:56.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:01.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:07.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:12.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:17.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:22.481 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:27.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:32.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:37.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:42.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:47.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:53.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:58.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:03.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:08.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:13.589 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:18.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:23.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:28.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:34.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:39.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:44.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:49.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:54.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:59.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:04.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:09.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:14.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:20.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:25.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:30.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:35.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:40.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:45.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:50.932 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:56.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:01.116 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:06.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:11.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:16.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:21.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:26.776 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:32.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:37.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:42.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:47.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:52.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:57.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:03.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:08.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:13.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:18.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:23.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:28.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:33.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:39.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:44.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:49.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:54.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:59.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:04.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:09.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:15.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:20.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:25.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:30.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:35.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:40.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:45.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:50.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:55.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:01.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:06.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:11.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:16.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:21.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:26.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:31.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:36.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:41.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:47.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:52.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:57.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:02.327 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:07.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:12.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:17.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:22.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:11.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -20:28:16.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:21.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:26.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:31.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:36.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:42.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:47.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:52.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:57.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:02.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:07.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:12.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:18.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:23.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:28.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:33.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:38.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:43.950 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:49.086 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:54.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:59.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:04.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:09.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:14.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:19.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:24.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:30.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:35.205 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:40.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:45.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:50.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:55.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:00.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:05.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:41.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -20:31:47.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:52.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:57.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:02.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:07.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:12.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:14.652 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.lang.InterruptedException -21:04:53.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -21:04:58.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:18:26.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:18:31.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:18:37.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:18:42.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:18:47.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:18:52.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:18:57.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:02.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:07.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:12.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:17.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:23.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:28.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:33.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:38.466 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:43.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:48.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:53.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:19:58.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:03.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:09.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:14.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:19.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:24.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:29.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:34.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:39.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:45.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:50.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:20:55.255 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:00.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:05.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:10.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:15.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:21.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:26.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:31.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:36.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:41.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:46.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:51.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:21:57.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:02.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:07.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:12.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:17.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:22.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:27.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:33.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:38.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:43.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:48.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:53.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:22:58.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:03.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:08.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:14.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:19.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:24.381 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:29.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:34.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:39.867 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:44.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:50.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:23:55.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:00.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:05.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:10.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:15.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:21.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:26.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:31.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:36.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:41.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:46.808 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:51.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:24:57.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:02.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:07.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:12.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:17.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:22.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:28.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:33.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:38.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:43.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:48.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:53.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:25:58.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:04.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:09.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:14.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:19.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:24.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:29.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:34.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:40.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:45.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:50.387 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:26:55.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:00.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:05.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:10.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:16.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:21.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:26.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:31.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:36.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:41.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:46.964 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:52.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:27:57.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:02.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:07.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:12.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:17.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:22.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:28.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:33.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:38.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:43.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:48.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:53.771 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:28:59.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:04.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:09.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:14.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:19.655 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:24.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:29.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:35.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:40.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:45.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:50.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:29:55.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:00.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:06.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:11.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:16.424 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:21.593 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:26.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:31.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:37.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:42.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:47.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:52.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:30:57.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:02.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:07.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:13.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:18.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:23.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:28.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:33.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:38.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:44.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:49.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:54.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:31:59.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:04.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:09.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:15.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:20.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:25.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:30.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:35.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:40.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:46.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:51.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:32:56.467 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:01.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:06.708 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:11.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:16.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:21.983 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:27.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:32.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:37.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:42.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:47.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:52.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:33:58.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:03.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:08.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:13.621 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:18.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:23.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:29.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:34.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:39.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:44.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:49.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:54.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:34:59.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:04.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:10.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:15.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:20.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:25.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:30.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:35.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:40.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:46.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:51.206 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:35:56.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:01.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:06.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:11.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:16.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:21.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:27.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:32.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:37.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:42.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:47.739 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:52.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:36:58.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:03.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:08.381 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:13.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:18.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:23.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:29.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:34.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:39.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:44.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:49.747 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:37:54.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:00.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:05.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:10.391 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:15.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:20.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:25.808 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:30.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:36.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:41.227 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:46.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:51.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:38:56.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:01.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:07.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:12.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:17.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:22.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:27.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:32.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:37.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:43.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:48.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:53.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:39:58.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:03.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:08.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:13.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:19.005 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:24.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:29.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:34.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:39.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:44.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:49.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:40:55.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:00.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:05.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:10.434 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:15.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:20.856 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:26.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:31.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:36.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:41.374 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:46.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:51.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:41:56.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:02.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:07.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:12.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:17.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:22.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:27.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:32.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:38.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:43.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:48.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:53.693 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:42:58.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:03.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:09.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:14.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:19.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:24.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:29.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:34.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:39.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:45.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:50.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:43:55.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:00.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:05.649 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:10.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:15.895 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:21.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:26.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:31.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:36.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:41.714 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:46.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:52.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:44:57.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:02.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:07.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:12.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:17.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:23.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:28.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:33.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:38.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:43.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:48.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:54.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:45:59.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:04.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:09.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:14.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:19.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:24.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:30.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:35.162 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:40.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:45.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:50.667 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:46:55.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:01.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:06.116 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:11.255 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:16.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:21.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:26.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:31.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:37.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:42.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:47.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:52.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:47:57.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:02.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:07.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:13.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:18.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:23.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:28.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:33.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:38.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:44.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:49.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:54.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:48:59.466 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:04.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:09.760 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:14.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:20.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:25.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:30.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:35.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:40.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:45.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:50.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:49:56.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:01.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:06.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:11.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:16.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:21.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:26.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:31.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:36.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:42.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:47.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:52.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:50:57.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:02.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:07.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:12.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:18.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:23.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:28.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:33.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:38.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:43.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:48.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:53.852 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:51:58.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:04.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:09.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:14.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:19.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:24.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:29.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:34.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:39.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:45.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:50.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:52:55.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:00.438 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:05.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:10.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:15.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:20.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:26.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:31.205 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:36.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:41.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:46.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:51.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:53:56.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:01.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:07.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:12.204 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:17.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:22.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:27.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:32.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:37.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:42.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:48.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:53.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:54:58.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:03.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:08.638 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:13.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:18.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:24.005 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:29.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:34.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:39.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:44.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:49.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:54.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:55:59.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:04.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:10.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:15.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:20.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:25.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:30.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:35.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:40.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:45.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:51.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:56:56.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:01.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:06.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:11.574 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:16.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:21.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:26.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:32.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:37.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:42.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:47.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:52.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:57:57.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:02.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:08.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:13.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:18.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:23.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:28.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:33.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:38.708 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:43.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:48.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:54.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:58:59.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:04.381 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:09.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:14.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:19.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:24.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:30.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:35.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:40.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:45.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:50.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +19:59:55.641 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:00.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:05.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:10.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:16.073 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:21.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:26.307 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:31.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:36.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:41.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:46.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:51.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:00:57.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:02.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:07.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:12.344 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:17.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:22.574 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:27.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:32.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:37.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:43.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:48.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:53.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:01:58.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:03.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:08.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:13.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:18.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:24.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:29.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:34.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:39.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:44.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:49.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:54.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:02:59.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:05.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:10.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:15.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:20.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:25.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:30.719 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:35.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:40.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:46.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:51.208 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:03:56.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:01.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:06.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:11.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:16.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:21.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:26.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:32.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:37.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:42.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:47.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:52.667 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:04:57.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:02.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:08.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:13.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:18.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:23.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:28.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:33.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:38.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:43.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:49.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:54.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:05:59.269 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:04.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:09.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-559] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:14.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-560] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:19.796 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-561] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:24.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-562] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:30.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-563] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:35.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-564] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:40.255 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-565] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:45.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-566] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:50.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-567] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:06:55.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-568] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:00.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-569] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:05.855 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-570] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:10.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-571] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:16.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-572] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:21.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-573] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:26.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-574] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:31.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-575] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:36.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-576] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:41.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-577] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:46.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-578] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:51.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-579] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:07:57.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-580] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:02.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-581] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:07.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-582] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:12.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-583] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:17.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-584] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:22.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-585] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:27.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-586] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:33.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-587] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:38.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-588] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:43.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-589] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:48.413 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-590] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:53.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-591] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:08:58.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-592] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:03.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-593] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:08.919 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-594] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:14.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-595] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:19.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-596] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:24.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-597] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:29.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-598] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:34.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-599] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:39.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-600] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:44.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-601] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:49.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-602] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:09:55.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-603] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:00.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-604] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:05.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-605] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:10.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-606] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:15.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-607] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:20.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-608] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:25.826 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-609] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:30.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-610] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:36.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-611] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:41.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-612] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:46.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-613] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). +20:10:51.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-614] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). diff --git a/logs/cloud-system/error.log b/logs/cloud-system/error.log index 294dfc7..b1d6376 100644 --- a/logs/cloud-system/error.log +++ b/logs/cloud-system/error.log @@ -1,7693 +1,1476 @@ -14:55:13.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -14:55:18.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:55:23.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:55:28.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:55:34.025 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:55:39.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:55:44.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:55:49.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:55:54.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:55:59.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:04.745 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:09.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:14.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:20.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:25.204 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:30.298 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:35.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:40.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:45.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:50.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:56:55.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:01.005 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:06.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:11.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:16.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:21.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:26.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:31.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:36.719 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:41.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:46.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:52.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:57:57.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:02.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:07.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:12.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:17.518 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:22.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:27.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:32.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:37.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:43.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:48.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:53.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:58:58.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:03.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:08.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:13.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:18.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:24.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:29.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:34.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:39.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:44.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:49.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:54.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -14:59:59.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:05.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:10.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:15.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:20.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:25.542 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:30.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:35.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:40.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:46.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:51.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:00:56.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:01.447 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:06.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:11.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:16.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:21.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:27.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:32.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:37.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:42.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:47.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:52.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:01:57.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:02.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:08.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:13.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:18.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:23.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:28.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:33.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:38.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:43.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:49.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:54.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:02:59.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:04.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:09.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:14.844 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:19.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:25.091 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:30.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:35.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:40.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:45.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:50.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:03:55.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:00.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:06.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:11.182 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:16.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:21.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:26.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:31.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:36.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:41.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:47.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:52.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:04:57.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:02.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:07.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:12.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:17.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:22.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:28.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:33.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:38.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:43.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:48.655 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:53.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:05:58.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:06:04.038 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:06:09.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:06:14.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:08:38.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -15:08:43.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:08:48.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:08:53.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:08:58.729 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:03.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:08.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:14.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:19.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:24.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:29.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:34.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:39.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:44.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:49.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:54.896 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:09:59.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:05.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:10.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:15.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:20.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:25.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:30.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:35.950 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:41.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:46.246 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:51.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:10:56.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:01.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:06.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:11.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:17.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:22.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:27.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:32.366 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:37.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:42.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:47.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:52.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:11:58.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:03.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:08.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:13.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:18.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:23.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:29.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:34.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:39.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:44.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:49.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:12:55.004 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:00.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:05.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:10.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:15.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:20.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:26.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:31.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:36.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:41.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:46.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:51.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:13:57.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:02.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:07.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:12.397 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:17.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:22.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:27.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:32.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:38.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:43.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:48.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:53.613 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:14:58.747 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:03.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:09.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:14.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:19.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:24.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:29.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:34.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:39.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:45.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:50.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:15:55.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:00.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:05.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:10.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:16.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:21.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:26.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:31.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:36.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:41.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:47.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:52.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:16:57.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:02.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:07.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:12.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:17.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:23.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:28.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:33.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:38.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:43.807 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:48.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:54.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:17:59.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:04.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:09.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:14.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:19.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:25.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:30.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:35.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:40.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:45.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:50.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:18:56.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:01.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:06.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:11.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:16.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:21.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:27.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:32.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:37.481 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:42.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:47.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:52.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:19:58.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:03.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:08.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:13.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:18.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:23.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:28.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:34.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:39.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:44.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:49.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:54.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:20:59.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:05.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:10.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:15.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:20.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:25.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:30.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:35.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:41.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:46.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:51.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:21:56.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:01.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:06.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:12.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:17.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:22.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:27.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:32.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:37.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:43.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:48.208 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:53.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:22:58.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:03.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:08.910 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:14.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:19.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:24.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:29.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:34.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:39.883 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:45.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:50.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:23:55.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:00.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:05.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:10.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:16.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:21.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:26.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:31.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:36.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:41.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:47.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:52.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:24:57.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:02.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:07.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:12.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:17.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:23.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:28.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:33.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:38.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:43.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:48.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:54.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:25:59.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:04.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:09.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:14.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:20.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:25.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:30.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:35.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:40.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:45.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:50.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:26:56.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:01.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:06.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:11.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:16.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:22.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:27.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:32.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:37.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:42.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:47.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:53.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:27:58.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:03.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:08.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:13.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:18.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:24.029 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:29.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:34.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:39.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:44.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:49.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:28:54.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:00.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:05.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:10.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:15.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:20.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:25.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:30.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:36.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:41.163 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:46.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:51.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:29:56.519 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:01.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:06.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:11.841 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:16.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:22.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:27.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:32.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:37.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:42.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:47.731 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:52.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:30:57.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:03.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:08.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:13.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:18.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:23.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:28.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:33.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:38.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:44.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:49.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:54.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:31:59.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:32:04.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:32:09.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:32:14.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:32:19.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:32:25.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:32:30.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:32:35.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:32:40.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:33:14.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -15:33:20.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:33:25.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:33:30.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:33:35.374 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:33:40.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:33:45.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:33:50.785 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:33:55.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:01.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:06.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:11.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:16.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:21.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:26.706 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:31.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:36.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:42.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:47.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:52.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:34:57.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:02.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:07.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:13.089 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:18.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:23.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:28.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:33.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:38.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:43.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:49.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:54.208 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:35:59.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:04.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:09.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:14.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:19.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:24.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:29.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:34.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:40.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:45.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:50.323 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:36:55.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:00.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:05.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:10.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:15.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:20.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:26.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:31.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:36.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:41.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:46.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:51.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:37:56.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:38:01.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:42:24.907 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -15:42:30.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:42:35.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:42:40.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:42:45.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:42:50.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:42:55.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:00.788 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:05.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:10.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:16.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:21.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:26.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:31.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:36.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:41.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:46.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:51.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:43:57.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:02.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:07.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:12.424 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:17.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:22.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:27.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:32.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:38.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:43.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:48.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:53.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:44:58.497 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:03.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:08.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:13.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:18.928 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:24.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:29.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:34.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:39.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:44.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:49.604 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:54.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:45:59.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:04.907 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:10.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:15.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:20.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:25.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:30.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:35.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:40.713 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:45.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:50.934 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:46:56.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:01.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:06.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:11.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:16.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:21.788 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:27.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:32.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:37.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:42.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:47.494 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:52.582 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:47:57.708 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:02.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:08.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:13.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:18.343 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:23.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:28.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:33.755 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:38.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:44.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:49.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:54.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:48:59.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:04.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:09.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:14.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:19.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:25.021 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:30.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:35.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:40.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:45.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:50.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:49:55.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:00.932 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:06.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:11.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:16.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:21.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:26.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:31.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:36.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:42.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:47.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:52.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:50:57.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:51:02.641 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:51:07.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:51:12.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:51:18.064 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:51:23.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:51:28.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:51:33.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:07.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -15:52:12.151 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:17.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:22.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:27.553 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:32.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:37.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:42.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:47.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:53.089 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:52:58.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:03.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:08.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:13.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:18.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:23.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:29.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:34.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:39.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:44.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:49.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:54.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:53:59.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:05.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:10.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:15.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:20.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:25.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:30.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:35.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:41.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:46.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:51.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:54:56.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:01.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:06.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:11.708 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:16.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:21.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:27.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:32.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:37.360 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:42.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:47.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:52.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:55:57.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:03.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:08.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:13.237 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:18.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:23.596 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:28.685 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:33.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:38.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:44.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:49.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:54.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:56:59.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:04.553 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:09.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:14.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:19.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:25.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:30.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:35.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:40.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:45.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:50.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:57:55.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:01.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:06.327 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:11.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:16.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:21.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:26.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:31.685 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:36.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:41.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:47.137 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:52.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:58:57.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:02.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:07.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:12.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:17.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:22.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:28.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:33.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:38.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:43.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:48.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:53.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -15:59:58.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:03.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:09.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:14.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:19.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:24.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:29.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:34.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:40.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:45.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:50.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:00:55.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:00.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:05.836 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:10.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:16.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:21.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:26.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:31.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:36.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:41.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:47.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:52.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:01:57.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:02.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:07.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:12.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:18.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:23.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:28.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:33.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:38.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:43.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:49.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:54.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:02:59.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:04.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:09.723 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:14.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:19.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:25.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:30.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:35.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:40.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:45.771 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:50.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:03:56.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:01.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:06.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:11.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:16.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:21.821 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:27.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:32.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:37.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:42.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:47.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:52.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:04:57.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:03.123 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:08.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:13.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:18.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:23.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:28.929 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:34.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:39.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:44.433 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:49.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:54.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:05:59.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:05.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:10.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:15.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:20.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:25.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:30.897 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:36.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:41.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:46.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:51.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:06:56.731 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:01.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:07.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:12.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:17.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:22.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:27.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:32.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:37.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:43.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:48.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:53.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:07:58.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:03.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:08.922 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:14.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:19.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:24.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:29.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:34.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:39.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:44.963 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:50.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:08:55.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:00.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:05.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:10.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:15.754 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:20.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:25.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:31.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:36.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:41.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:46.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:51.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:09:56.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:01.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:06.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:12.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:17.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:22.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:27.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:32.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:37.764 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:42.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:48.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:53.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:10:58.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:03.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:08.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:13.612 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:18.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:23.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:28.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:34.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:39.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:44.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:49.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:54.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:11:59.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:04.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:10.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:10.790 [nacos-grpc-client-executor-47.116.173.119-250] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559528816_117.136.120.204_26647]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.818 [nacos-grpc-client-executor-47.116.173.119-253] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559514056_117.136.120.204_26640]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.897 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.919 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.291 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.291 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.821 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.837 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.233 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.250 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.766 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.766 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.610 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:14.100 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:14.547 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.046 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.363 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:15.694 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.099 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.962 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:17.335 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.209 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.411 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.555 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.759 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:20.994 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:21.178 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.543 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.760 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.237 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.416 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:26.004 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:26.160 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:27.851 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:28.013 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.815 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.948 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:30.826 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:35.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:41.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:46.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:51.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:12:56.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:01.593 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:06.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:11.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:16.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:22.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:27.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:32.406 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:37.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:42.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:47.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:52.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:13:58.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:03.294 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:08.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:13.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:18.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:23.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:28.771 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:33.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:38.924 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:43.973 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:49.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:54.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:14:59.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:04.271 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:09.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:14.497 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:19.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:24.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:29.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:34.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:39.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:44.964 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:50.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:15:55.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:00.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:05.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:10.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:15.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:20.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:25.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:30.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:36.107 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:41.278 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:46.359 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:51.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:16:56.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:01.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:06.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:12.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:17.107 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:22.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:27.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:32.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:37.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:42.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:48.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:53.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:17:58.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:03.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:08.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:13.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:19.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:24.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:29.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:34.748 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:39.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:44.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:50.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:18:55.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:00.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:05.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:10.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:16.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:21.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:26.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:31.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:36.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:41.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:46.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:52.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:19:57.189 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:02.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:07.344 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:12.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:17.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:22.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:27.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:32.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:37.761 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:42.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:48.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:53.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:20:58.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:03.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:08.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:14.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:19.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:24.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:29.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:34.593 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:39.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:44.767 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:49.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:21:54.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:00.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:05.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:10.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:15.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:20.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:25.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:31.025 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:36.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:41.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:46.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:51.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:22:56.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:02.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:07.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:12.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:17.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:22.708 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:27.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:33.013 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:38.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:43.267 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:48.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:53.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:23:58.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:03.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:09.054 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:14.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:19.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:24.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:29.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:34.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:39.808 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:44.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:50.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:24:55.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:00.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:05.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:10.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:16.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:21.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:26.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:31.622 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:36.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:42.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:47.224 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:52.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:25:57.611 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:02.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:07.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:13.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:18.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:23.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:28.713 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:33.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:39.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:44.261 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:49.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:54.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:26:59.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:04.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:10.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:15.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:20.453 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:25.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:30.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:35.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:40.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:45.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:50.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:27:56.033 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:01.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:06.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:11.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:16.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:21.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:26.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:31.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:37.005 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:39.407 [nacos-grpc-client-executor-47.116.173.119-503] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753726_117.143.60.138_58347]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.408 [nacos-grpc-client-executor-47.116.173.119-504] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560754016_117.143.60.138_58351]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.421 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.422 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.531 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.532 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.751 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.751 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:42.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:47.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:52.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:28:57.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:02.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:07.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:12.963 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:18.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:23.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:28.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:33.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:38.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:43.855 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:49.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:54.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:29:59.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:04.466 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:09.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:14.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:19.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:25.000 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:30.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:35.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:40.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:45.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:50.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:30:55.878 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:01.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:06.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:11.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:16.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:21.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:26.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:31.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:37.107 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:42.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:47.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:52.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:31:57.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:02.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:07.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:13.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:18.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:23.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:28.747 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:33.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:39.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:44.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:49.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:54.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:32:59.696 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:04.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:10.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:15.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:20.356 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:25.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:30.637 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:35.788 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:40.964 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:46.088 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:51.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:33:56.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:01.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:06.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:11.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:16.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:21.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:27.118 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:32.208 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:37.278 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:42.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:47.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:52.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:34:57.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:02.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:08.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:13.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:18.259 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:23.393 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:28.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:33.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:38.801 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:43.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:49.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:54.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:35:59.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:04.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:09.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:14.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:19.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:25.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:30.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:35.244 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:40.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:45.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:50.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:36:55.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:00.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:06.039 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:11.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:16.305 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:21.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:26.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:31.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:36.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:41.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:47.061 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:52.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:37:57.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:02.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:07.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:12.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:17.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:22.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:27.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:33.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:38.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:43.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:48.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:53.639 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:38:58.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:03.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:09.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:14.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:19.407 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:24.527 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:29.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:34.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:39.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:44.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:50.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:39:55.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-559] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:00.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-560] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:05.333 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-561] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:10.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-562] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:15.583 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-563] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:20.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-564] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:25.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-565] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:30.864 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-566] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:36.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-567] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:41.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-568] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:46.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-569] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:51.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-570] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:40:56.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-571] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:01.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-572] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:06.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-573] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:12.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-574] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:17.107 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-575] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:22.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-576] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:27.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-577] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:32.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-578] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:37.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-579] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:42.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-580] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:47.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-581] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:53.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-582] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:41:58.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-583] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:03.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-584] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:08.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-585] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:13.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-586] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:18.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-587] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:23.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-588] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:28.987 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-589] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:34.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-590] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:39.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-591] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:44.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-592] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:49.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-593] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:54.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-594] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:42:59.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-595] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:04.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-596] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:09.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-597] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:15.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-598] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:20.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-599] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:25.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-600] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:30.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-601] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:35.716 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-602] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:40.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-603] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:45.997 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-604] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:51.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-605] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:43:56.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-606] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:01.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-607] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:06.574 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-608] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:11.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-609] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:16.887 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-610] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:22.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-611] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:27.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-612] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:32.315 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-613] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:37.387 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-614] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:42.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-615] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:47.739 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-616] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:52.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-617] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:44:58.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-618] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:03.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-619] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:08.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-620] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:13.457 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-621] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:18.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-622] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:23.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-623] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:28.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-624] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:34.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-625] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:39.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-626] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:44.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-627] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:49.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-628] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:54.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-629] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:45:59.731 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-630] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:04.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-631] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:10.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-632] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:15.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-633] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:20.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-634] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:25.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-635] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:30.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-636] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:35.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-637] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:40.646 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-638] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:45.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-639] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:50.836 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-640] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:46:55.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-641] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:01.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-642] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:06.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-643] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:11.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-644] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:16.466 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-645] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:21.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-646] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:26.719 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-647] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:31.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-648] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:36.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-649] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:42.094 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-650] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:47.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-651] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:52.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-652] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:47:57.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-653] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:02.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-654] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:07.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-655] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:12.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-656] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:18.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-657] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:23.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-658] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:28.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-659] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:33.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-660] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:38.604 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-661] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:43.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-662] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:48.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-663] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:53.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-664] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:48:59.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-665] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:04.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-666] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:09.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-667] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:14.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-668] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:19.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-669] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:24.745 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-670] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:29.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-671] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:35.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-672] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:37.225 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysCarController': Injection of resource dependencies failed - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 36 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 47 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 60 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) +08:58:48.356 [http-nio-9707-exec-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUzN30.KCACoYbkUzVEw_6VVDp_TzjuiKcoNgSwWFo8XLYJqzM, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 531200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fe6a32c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] +08:58:48.367 [http-nio-9707-exec-6] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 531200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fe6a32c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 61 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 69 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 71 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 75 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 77 common frames omitted -16:49:40.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-673] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:49:54.712 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysCarController': Injection of resource dependencies failed - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 36 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 47 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 60 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor67.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 61 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 69 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 71 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 75 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 77 common frames omitted -16:50:16.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -16:50:22.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:50:27.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:50:32.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:50:37.456 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:50:42.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:50:47.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:50:52.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:50:57.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:03.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:08.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:13.492 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:18.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:23.774 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:28.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:34.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:39.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:44.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:49.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:54.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:51:59.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:04.876 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:09.969 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:15.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:20.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:25.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:30.553 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:35.724 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:40.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:46.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:51.205 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:52:56.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:53:01.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:53:06.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:53:11.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:53:16.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:53:22.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:53:37.607 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysCarController': Injection of resource dependencies failed - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 36 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 47 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 60 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 531200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1fe6a32c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:00:58.785 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 985400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@72b8f91d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:01.902 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 810000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@15e68fd0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.114 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 827200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@699e89bd[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:08.444 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 731900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7913bcc[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:13.039 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053270513_117.143.60.138_58112, request = ConfigBatchListenRequest +09:01:13.140 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2bc0245270ba175dad4feeb8e545be6, Client-RequestTS=1727053271719, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +09:01:13.254 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2bc0245270ba175dad4feeb8e545be6, Client-RequestTS=1727053271719, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.364 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2bc0245270ba175dad4feeb8e545be6, Client-RequestTS=1727053271719, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.476 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d2bc0245270ba175dad4feeb8e545be6, Client-RequestTS=1727053271719, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.476 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:13.640 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ef7451894f416284fca8958733b1be1d, Client-RequestTS=1727053273538, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.742 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ef7451894f416284fca8958733b1be1d, Client-RequestTS=1727053273538, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.844 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ef7451894f416284fca8958733b1be1d, Client-RequestTS=1727053273538, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ef7451894f416284fca8958733b1be1d, Client-RequestTS=1727053273538, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.959 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.130 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d955a2a3a30f22cb08701a57363a83f7, Client-RequestTS=1727053274021, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.238 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d955a2a3a30f22cb08701a57363a83f7, Client-RequestTS=1727053274021, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.340 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d955a2a3a30f22cb08701a57363a83f7, Client-RequestTS=1727053274021, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.441 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d955a2a3a30f22cb08701a57363a83f7, Client-RequestTS=1727053274021, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.441 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1686c3eba4360c08eb5dd19825050f07, Client-RequestTS=1727053274492, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.708 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1686c3eba4360c08eb5dd19825050f07, Client-RequestTS=1727053274492, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.817 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1686c3eba4360c08eb5dd19825050f07, Client-RequestTS=1727053274492, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1686c3eba4360c08eb5dd19825050f07, Client-RequestTS=1727053274492, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.098 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f715a3e19b5c262c262a5ec1a83a9212, Client-RequestTS=1727053274989, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.206 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f715a3e19b5c262c262a5ec1a83a9212, Client-RequestTS=1727053274989, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.315 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f715a3e19b5c262c262a5ec1a83a9212, Client-RequestTS=1727053274989, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f715a3e19b5c262c262a5ec1a83a9212, Client-RequestTS=1727053274989, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3484e8a3663901568916809e93f4c3e, Client-RequestTS=1727053275490, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.708 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3484e8a3663901568916809e93f4c3e, Client-RequestTS=1727053275490, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.817 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3484e8a3663901568916809e93f4c3e, Client-RequestTS=1727053275490, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3484e8a3663901568916809e93f4c3e, Client-RequestTS=1727053275490, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.043 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 7600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@52e36d98[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2190999a9b542876ae4c8d2b21c0071, Client-RequestTS=1727053275990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.209 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2190999a9b542876ae4c8d2b21c0071, Client-RequestTS=1727053275990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.319 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2190999a9b542876ae4c8d2b21c0071, Client-RequestTS=1727053275990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2190999a9b542876ae4c8d2b21c0071, Client-RequestTS=1727053275990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.603 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b319c4b35ae249e590d2bdc00d2510, Client-RequestTS=1727053276492, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.711 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b319c4b35ae249e590d2bdc00d2510, Client-RequestTS=1727053276492, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.819 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b319c4b35ae249e590d2bdc00d2510, Client-RequestTS=1727053276492, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b319c4b35ae249e590d2bdc00d2510, Client-RequestTS=1727053276492, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=230cca0807d24debd18603fc057fcdca, Client-RequestTS=1727053276990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.207 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=230cca0807d24debd18603fc057fcdca, Client-RequestTS=1727053276990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.317 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=230cca0807d24debd18603fc057fcdca, Client-RequestTS=1727053276990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=230cca0807d24debd18603fc057fcdca, Client-RequestTS=1727053276990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.597 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b4cbb50e8e69ba0a215e698e5b546cd0, Client-RequestTS=1727053277488, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.706 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b4cbb50e8e69ba0a215e698e5b546cd0, Client-RequestTS=1727053277488, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.816 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b4cbb50e8e69ba0a215e698e5b546cd0, Client-RequestTS=1727053277488, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b4cbb50e8e69ba0a215e698e5b546cd0, Client-RequestTS=1727053277488, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.097 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=317eea4217e2ba23ed6ab04601efbab9, Client-RequestTS=1727053277990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.205 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=317eea4217e2ba23ed6ab04601efbab9, Client-RequestTS=1727053277990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.315 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=317eea4217e2ba23ed6ab04601efbab9, Client-RequestTS=1727053277990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.426 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=317eea4217e2ba23ed6ab04601efbab9, Client-RequestTS=1727053277990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.426 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.601 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f6d61ce0c8dc40795b6f1245c295cdf, Client-RequestTS=1727053278488, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.711 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f6d61ce0c8dc40795b6f1245c295cdf, Client-RequestTS=1727053278488, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.820 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f6d61ce0c8dc40795b6f1245c295cdf, Client-RequestTS=1727053278488, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.931 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f6d61ce0c8dc40795b6f1245c295cdf, Client-RequestTS=1727053278488, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.931 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac92b1ccafbca6f5824e4aee28c0e35, Client-RequestTS=1727053278996, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.154 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 353300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7e49ad95[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.217 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac92b1ccafbca6f5824e4aee28c0e35, Client-RequestTS=1727053278996, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac92b1ccafbca6f5824e4aee28c0e35, Client-RequestTS=1727053278996, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac92b1ccafbca6f5824e4aee28c0e35, Client-RequestTS=1727053278996, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b90c1441c5395aad87794702daa2f612, Client-RequestTS=1727053279498, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b90c1441c5395aad87794702daa2f612, Client-RequestTS=1727053279498, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.825 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b90c1441c5395aad87794702daa2f612, Client-RequestTS=1727053279498, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.934 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b90c1441c5395aad87794702daa2f612, Client-RequestTS=1727053279498, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.934 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:20.109 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a18c26616a10fdca0d97bc0057ae074, Client-RequestTS=1727053279998, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a18c26616a10fdca0d97bc0057ae074, Client-RequestTS=1727053279998, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.326 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a18c26616a10fdca0d97bc0057ae074, Client-RequestTS=1727053279998, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a18c26616a10fdca0d97bc0057ae074, Client-RequestTS=1727053279998, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:20.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e24c69ec14b9a6bec9cddad1163a669d, Client-RequestTS=1727053280500, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.717 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e24c69ec14b9a6bec9cddad1163a669d, Client-RequestTS=1727053280500, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.826 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e24c69ec14b9a6bec9cddad1163a669d, Client-RequestTS=1727053280500, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.935 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e24c69ec14b9a6bec9cddad1163a669d, Client-RequestTS=1727053280500, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.935 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=73ee99b28d8af2550f5b0bca5e18f7f9, Client-RequestTS=1727053280999, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.215 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=73ee99b28d8af2550f5b0bca5e18f7f9, Client-RequestTS=1727053280999, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=73ee99b28d8af2550f5b0bca5e18f7f9, Client-RequestTS=1727053280999, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=73ee99b28d8af2550f5b0bca5e18f7f9, Client-RequestTS=1727053280999, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=05bf53eee270b2f5b7bc4a3b3b4fdfc3, Client-RequestTS=1727053281497, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.715 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=05bf53eee270b2f5b7bc4a3b3b4fdfc3, Client-RequestTS=1727053281497, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.826 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=05bf53eee270b2f5b7bc4a3b3b4fdfc3, Client-RequestTS=1727053281497, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=05bf53eee270b2f5b7bc4a3b3b4fdfc3, Client-RequestTS=1727053281497, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:22.104 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18bc0fd4a24463a1515596c9a10a3100, Client-RequestTS=1727053281995, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.212 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18bc0fd4a24463a1515596c9a10a3100, Client-RequestTS=1727053281995, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.321 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18bc0fd4a24463a1515596c9a10a3100, Client-RequestTS=1727053281995, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.368 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 821100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@70a9ddf4[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:22.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18bc0fd4a24463a1515596c9a10a3100, Client-RequestTS=1727053281995, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:22.601 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3950895a04532d0ed0f95d625e4650e3, Client-RequestTS=1727053282493, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.709 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3950895a04532d0ed0f95d625e4650e3, Client-RequestTS=1727053282493, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.818 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3950895a04532d0ed0f95d625e4650e3, Client-RequestTS=1727053282493, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3950895a04532d0ed0f95d625e4650e3, Client-RequestTS=1727053282493, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:23.101 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de69a04a06442d1fda6485e0cc96e10f, Client-RequestTS=1727053282991, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.210 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de69a04a06442d1fda6485e0cc96e10f, Client-RequestTS=1727053282991, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.321 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de69a04a06442d1fda6485e0cc96e10f, Client-RequestTS=1727053282991, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de69a04a06442d1fda6485e0cc96e10f, Client-RequestTS=1727053282991, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:23.604 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22bd2154e1f3c8175f30531122c1210c, Client-RequestTS=1727053283494, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.714 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22bd2154e1f3c8175f30531122c1210c, Client-RequestTS=1727053283494, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.823 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22bd2154e1f3c8175f30531122c1210c, Client-RequestTS=1727053283494, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.931 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22bd2154e1f3c8175f30531122c1210c, Client-RequestTS=1727053283494, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.931 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:24.101 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0eb7223b284b44e7b9ab950b949081ed, Client-RequestTS=1727053283994, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.211 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0eb7223b284b44e7b9ab950b949081ed, Client-RequestTS=1727053283994, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.320 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0eb7223b284b44e7b9ab950b949081ed, Client-RequestTS=1727053283994, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0eb7223b284b44e7b9ab950b949081ed, Client-RequestTS=1727053283994, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:24.602 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=663b5125979de24bc98f593e794287e9, Client-RequestTS=1727053284493, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.709 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=663b5125979de24bc98f593e794287e9, Client-RequestTS=1727053284493, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.819 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=663b5125979de24bc98f593e794287e9, Client-RequestTS=1727053284493, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=663b5125979de24bc98f593e794287e9, Client-RequestTS=1727053284493, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:25.097 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fcf37cb5195a420affbbd460d9b5d6d, Client-RequestTS=1727053284989, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.206 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fcf37cb5195a420affbbd460d9b5d6d, Client-RequestTS=1727053284989, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.317 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fcf37cb5195a420affbbd460d9b5d6d, Client-RequestTS=1727053284989, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fcf37cb5195a420affbbd460d9b5d6d, Client-RequestTS=1727053284989, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:25.598 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d90c6d9a9e9f7547635f67de017dadd7, Client-RequestTS=1727053285489, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.691 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 719300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@10a14b2b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:25.706 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d90c6d9a9e9f7547635f67de017dadd7, Client-RequestTS=1727053285489, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.816 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d90c6d9a9e9f7547635f67de017dadd7, Client-RequestTS=1727053285489, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d90c6d9a9e9f7547635f67de017dadd7, Client-RequestTS=1727053285489, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:26.095 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=193c6ad9127c2bd4afdeb7fce17f2110, Client-RequestTS=1727053285985, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.205 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=193c6ad9127c2bd4afdeb7fce17f2110, Client-RequestTS=1727053285985, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.314 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=193c6ad9127c2bd4afdeb7fce17f2110, Client-RequestTS=1727053285985, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=193c6ad9127c2bd4afdeb7fce17f2110, Client-RequestTS=1727053285985, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:26.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f92662c2bf42889660b80c496282fc8f, Client-RequestTS=1727053286488, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.706 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f92662c2bf42889660b80c496282fc8f, Client-RequestTS=1727053286488, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.815 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f92662c2bf42889660b80c496282fc8f, Client-RequestTS=1727053286488, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.924 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f92662c2bf42889660b80c496282fc8f, Client-RequestTS=1727053286488, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.924 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:27.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd8c9c7dc838ecdb01eadb33066e8079, Client-RequestTS=1727053286985, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.202 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd8c9c7dc838ecdb01eadb33066e8079, Client-RequestTS=1727053286985, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.311 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd8c9c7dc838ecdb01eadb33066e8079, Client-RequestTS=1727053286985, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.421 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd8c9c7dc838ecdb01eadb33066e8079, Client-RequestTS=1727053286985, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.421 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:27.593 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0ca33a7bf94bfde47bf78bebd1d19bc, Client-RequestTS=1727053287484, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.703 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0ca33a7bf94bfde47bf78bebd1d19bc, Client-RequestTS=1727053287484, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.814 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0ca33a7bf94bfde47bf78bebd1d19bc, Client-RequestTS=1727053287484, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0ca33a7bf94bfde47bf78bebd1d19bc, Client-RequestTS=1727053287484, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:28.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d45afe0f20f7a430d3c160b4664380, Client-RequestTS=1727053287985, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.204 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d45afe0f20f7a430d3c160b4664380, Client-RequestTS=1727053287985, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.312 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d45afe0f20f7a430d3c160b4664380, Client-RequestTS=1727053287985, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.421 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d45afe0f20f7a430d3c160b4664380, Client-RequestTS=1727053287985, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.422 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:28.593 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66a2227517f6f9723ac7ed84bc70dc47, Client-RequestTS=1727053288484, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.702 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66a2227517f6f9723ac7ed84bc70dc47, Client-RequestTS=1727053288484, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.813 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66a2227517f6f9723ac7ed84bc70dc47, Client-RequestTS=1727053288484, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.922 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66a2227517f6f9723ac7ed84bc70dc47, Client-RequestTS=1727053288484, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.922 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:29.091 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5d8ac8a5d5eb7f7332fbe54e076749e, Client-RequestTS=1727053288983, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.106 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 436300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5b89aee1[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:29.201 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5d8ac8a5d5eb7f7332fbe54e076749e, Client-RequestTS=1727053288983, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.310 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5d8ac8a5d5eb7f7332fbe54e076749e, Client-RequestTS=1727053288983, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.419 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5d8ac8a5d5eb7f7332fbe54e076749e, Client-RequestTS=1727053288983, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.419 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:29.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0cb11ac42a514bdda9438715f79eceb, Client-RequestTS=1727053289481, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0cb11ac42a514bdda9438715f79eceb, Client-RequestTS=1727053289481, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.809 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0cb11ac42a514bdda9438715f79eceb, Client-RequestTS=1727053289481, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0cb11ac42a514bdda9438715f79eceb, Client-RequestTS=1727053289481, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:30.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.198 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.308 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:18.150 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 688100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7d62d4c9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:21.272 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 901500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3fb02131[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:24.489 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 711600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6d55747d[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:32.120 [http-nio-9707-exec-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUzN30.KCACoYbkUzVEw_6VVDp_TzjuiKcoNgSwWFo8XLYJqzM, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 187400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@41b9c9fc[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] +09:02:32.120 [http-nio-9707-exec-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 187400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@41b9c9fc[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 61 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 69 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 71 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 75 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 77 common frames omitted -16:53:56.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -16:54:01.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:06.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:11.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:16.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:21.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:26.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:32.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:37.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:42.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:47.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:52.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:54:57.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:02.784 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:07.877 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:12.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:18.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:23.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:28.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:33.473 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:38.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:43.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:48.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:54.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:55:59.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:04.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:09.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:14.728 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:19.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:24.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:30.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:35.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:40.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:45.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:50.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:56:55.949 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:01.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:06.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:11.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:16.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:21.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:26.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:31.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:36.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:42.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:47.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:52.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:57:57.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:02.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:07.731 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:12.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:17.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:23.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:28.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:33.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:38.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:43.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:48.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:53.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:58:59.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:04.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:09.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:14.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:19.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:21.963 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -16:59:21.967 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -16:59:22.005 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysCarController': Injection of resource dependencies failed - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 36 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 47 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 60 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 71 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 77 common frames omitted -16:59:24.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:29.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:34.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:40.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:45.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:50.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -16:59:55.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:00.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:05.729 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:10.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:15.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:21.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:26.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:31.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:36.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:41.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:46.668 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:51.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:00:56.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:02.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:07.228 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:12.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:17.558 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:22.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:27.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:32.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:38.053 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:43.171 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:48.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:53.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:01:58.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:03.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:08.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:13.979 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:19.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:24.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:29.362 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:34.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:39.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:44.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:50.012 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:02:55.037 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:00.204 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:05.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:10.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:15.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:20.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:25.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:31.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:36.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:41.486 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:46.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:51.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:03:56.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:02.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:07.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:12.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:17.618 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:22.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:27.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:32.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:38.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:43.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:48.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:53.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:04:58.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:03.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:09.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:14.240 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:19.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:24.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:29.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:34.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:40.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:45.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:50.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:05:55.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:00.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:06.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:11.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:16.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:21.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:26.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:31.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:36.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:42.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:47.260 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:52.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:06:57.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:02.659 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:07.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:13.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:18.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:23.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:28.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:33.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:38.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:43.855 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:49.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:54.155 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:07:59.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:04.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:09.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:14.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:20.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:25.176 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:30.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:35.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:40.604 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:45.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:50.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:08:56.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:01.263 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:06.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:11.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:16.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:21.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:27.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:32.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:37.482 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:42.620 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:47.788 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:52.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:09:58.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:03.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:08.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:13.570 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:18.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:23.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:29.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:34.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:39.403 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:44.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:49.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:54.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:10:59.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:05.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:10.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:15.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:20.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:25.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:30.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:36.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:41.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:46.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:51.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:11:56.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:01.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:06.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:12.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:17.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:22.364 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:27.542 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:32.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:37.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:42.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:48.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:53.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:12:58.357 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:03.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:08.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:13.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:19.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:24.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:29.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:34.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:39.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:44.772 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:49.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:13:55.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:00.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:05.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:10.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:15.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:20.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:25.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:31.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:36.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:41.445 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:46.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:51.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:14:56.919 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:02.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:07.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:12.382 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:17.516 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:22.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:27.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:32.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:38.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:43.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:48.307 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:53.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:15:58.571 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:03.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:08.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:13.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:19.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:24.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:29.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:34.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:39.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:44.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:49.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:16:54.994 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:00.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:05.284 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:10.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:15.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:20.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:25.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:30.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:36.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:41.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:46.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:51.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:17:56.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:01.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:06.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:11.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:16.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:22.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:27.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:32.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:37.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:42.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:47.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:52.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:18:57.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:03.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:08.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:13.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:18.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:23.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:28.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:33.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:38.964 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:44.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:49.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:54.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:19:59.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:04.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:09.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:14.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:19.967 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:25.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:30.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:35.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:40.434 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:45.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:50.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:20:55.783 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:00.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:06.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:11.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:16.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:21.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:26.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:31.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:36.862 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:42.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:47.153 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:52.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:21:57.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:02.601 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:07.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:12.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:17.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:23.106 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:28.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:33.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:38.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:43.588 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:48.734 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:53.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:22:58.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:04.110 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:09.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:14.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:19.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:24.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:29.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:34.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:40.048 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:45.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:50.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:23:55.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:00.645 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:05.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:10.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:16.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:21.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:26.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:31.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:36.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:41.575 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:46.642 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:51.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:24:56.836 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:01.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:07.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:12.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:17.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:22.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:27.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:32.899 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:38.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:43.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:48.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:53.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:25:58.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:03.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:08.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:14.009 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:19.138 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:24.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:29.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:34.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:39.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:44.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:49.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:26:54.955 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:00.101 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:01.996 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -17:27:02.000 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -17:27:02.045 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysCarController': Injection of resource dependencies failed - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 36 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 47 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 60 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 71 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 77 common frames omitted -17:27:05.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:10.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:15.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:20.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:25.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:30.857 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:35.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:41.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:46.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:51.358 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:27:56.470 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:01.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:06.722 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:11.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:16.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:22.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:27.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:32.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:37.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:42.661 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:47.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:52.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:28:58.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:03.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:08.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:13.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:18.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:23.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:28.789 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:33.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:39.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:44.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:49.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:54.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:29:59.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:04.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:09.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:15.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:20.150 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:25.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:30.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:35.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:40.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:45.745 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:50.854 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:30:56.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:01.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:06.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:11.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:16.574 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:21.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:26.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:31.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-440] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:37.126 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-441] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:42.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-442] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:47.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-443] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:52.435 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-444] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:31:57.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-445] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:01.670 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysCarController': Injection of resource dependencies failed - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 36 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 47 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 60 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor67.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 61 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 69 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 71 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 75 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 77 common frames omitted -17:32:02.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-446] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:07.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-447] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:12.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-448] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:17.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-449] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:23.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-450] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:28.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-451] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:33.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-452] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:38.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-453] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:43.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-454] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:48.739 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-455] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:53.879 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-456] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:32:58.971 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-457] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:04.130 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-458] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:09.271 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-459] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:14.377 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-460] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:19.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-461] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:24.592 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-462] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:29.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-463] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:34.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-464] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:40.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-465] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:45.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-466] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:50.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-467] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:33:55.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-468] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:00.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-469] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:05.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-470] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:10.849 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-471] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:15.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-472] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:21.180 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-473] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:26.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-474] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:31.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-475] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:36.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-476] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:41.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-477] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:46.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-478] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:52.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-479] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:34:57.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-480] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:02.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-481] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:07.623 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-482] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:12.776 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-483] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:17.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-484] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:23.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-485] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:28.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-486] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:33.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-487] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:38.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-488] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:43.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-489] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:48.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-490] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:54.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-491] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:35:59.278 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-492] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:04.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-493] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:09.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-494] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:14.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-495] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:19.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-496] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:25.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-497] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:30.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-498] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:35.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-499] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:40.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-500] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:45.655 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-501] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:50.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-502] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:36:55.928 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-503] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:01.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-504] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:06.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-505] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:11.310 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-506] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:16.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-507] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:21.635 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-508] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:26.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-509] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:31.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-510] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:37.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-511] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:42.144 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-512] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:47.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-513] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:52.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-514] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:37:57.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-515] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:02.597 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-516] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:07.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-517] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:12.946 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-518] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:18.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-519] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:23.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-520] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:28.244 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-521] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:33.404 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-522] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:38.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-523] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:43.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-524] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:48.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-525] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:49.861 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysCarController': Injection of resource dependencies failed - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 36 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 47 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 60 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 187400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@41b9c9fc[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:04:30.094 [http-nio-9707-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUzN30.KCACoYbkUzVEw_6VVDp_TzjuiKcoNgSwWFo8XLYJqzM, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 566600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3714e6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] +09:04:30.094 [http-nio-9707-exec-3] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 566600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3714e6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 61 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 69 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 71 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 75 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 77 common frames omitted -17:38:53.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-526] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:38:59.089 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-527] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:04.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-528] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:09.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-529] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:14.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-530] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:19.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-531] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:24.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-532] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:29.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-533] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:34.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-534] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:40.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-535] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:45.135 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-536] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:50.214 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-537] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:39:55.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-538] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:00.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-539] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:05.573 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-540] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:09.397 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sysCarController': Injection of resource dependencies failed - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:371) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.autowireResource(CommonAnnotationBeanPostProcessor.java:598) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.getResource(CommonAnnotationBeanPostProcessor.java:576) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor$LegacyResourceElement.getResourceToInject(CommonAnnotationBeanPostProcessor.java:789) - at org.springframework.beans.factory.annotation.InjectionMetadata$InjectedElement.inject(InjectionMetadata.java:270) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.context.annotation.CommonAnnotationBeanPostProcessor.postProcessProperties(CommonAnnotationBeanPostProcessor.java:368) - ... 17 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 36 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 47 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 60 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor67.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 61 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 69 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 71 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 75 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 77 common frames omitted -17:40:10.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-541] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:15.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-542] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:20.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-543] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:26.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-544] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:31.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-545] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:36.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-546] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:41.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-547] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:46.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-548] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:51.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-549] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:40:56.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-550] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:01.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-551] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:07.022 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-552] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:12.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-553] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:17.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-554] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:22.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-555] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:27.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-556] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:32.874 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-557] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:38.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-558] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:43.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-559] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:48.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-560] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:53.245 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-561] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:41:58.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-562] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:03.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-563] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:08.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-564] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:13.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-565] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:19.002 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-566] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:24.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-567] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:29.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-568] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:34.385 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-569] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:39.463 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-570] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:44.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-571] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:49.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-572] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:54.750 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-573] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:42:59.855 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-574] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:05.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-575] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:09.319 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 58 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 566600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3714e6[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:04:36.539 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 343500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@27b57452[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:39.657 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 322800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3fa5edb1[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:44.443 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 23300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@28f3d4c0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:47.457 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 821900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@292156d5[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:10.901 [http-nio-9707-exec-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUzN30.KCACoYbkUzVEw_6VVDp_TzjuiKcoNgSwWFo8XLYJqzM, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 714400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f2bbeb4[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] +09:05:10.901 [http-nio-9707-exec-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 714400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f2bbeb4[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 59 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 67 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 69 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 73 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 75 common frames omitted -17:43:10.140 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-576] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:15.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-577] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:20.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-578] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:25.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-579] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:30.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-580] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:35.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-581] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:41.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-582] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:46.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-583] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:51.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-584] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:43:56.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-585] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:01.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-586] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:06.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-587] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:11.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-588] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:17.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-589] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:22.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-590] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:27.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-591] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:32.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-592] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:37.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-593] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:42.826 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-594] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:47.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-595] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:53.110 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-596] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:44:58.280 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-597] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:03.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-598] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:08.641 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-599] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:13.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-600] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:19.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-601] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:24.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-602] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:29.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-603] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:34.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-604] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:39.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-605] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:44.743 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-606] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:49.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-607] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:45:55.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-608] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:00.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-609] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:05.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-610] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:10.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-611] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:15.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-612] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:20.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-613] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:25.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-614] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:31.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-615] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:36.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-616] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:41.327 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-617] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:46.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-618] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:51.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-619] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:46:56.682 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-620] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:01.863 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-621] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:07.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-622] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:12.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-623] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:17.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-624] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:22.492 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-625] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:27.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-626] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:32.855 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-627] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:38.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-628] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:43.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-629] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:48.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-630] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:53.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-631] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:47:58.708 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-632] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:03.895 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-633] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:09.043 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-634] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:14.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-635] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:19.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-636] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:24.535 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-637] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:29.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-638] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:34.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-639] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:40.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-640] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:45.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-641] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:50.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-642] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:48:55.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-643] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:00.749 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-644] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:05.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-645] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:11.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-646] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:16.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-647] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:21.338 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-648] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:26.466 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-649] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:31.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-650] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:36.779 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-651] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:41.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-652] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:47.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-653] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:52.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-654] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:49:57.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-655] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:02.503 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-656] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:07.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-657] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:12.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-658] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:17.901 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-659] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:23.110 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-660] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:28.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-661] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:33.247 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-662] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:38.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-663] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:43.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-664] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:48.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-665] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:53.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-666] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:50:58.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-667] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:51:12.968 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 58 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor67.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 59 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 67 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 69 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 73 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 75 common frames omitted -17:51:30.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -17:51:36.079 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:51:41.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:51:46.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:51:51.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:51:56.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:01.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:06.823 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:11.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:17.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:22.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:27.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:32.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:37.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:42.738 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:47.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:52.975 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:52:58.106 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:03.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:08.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:13.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:18.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:23.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:28.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:34.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:39.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:44.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:49.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:54.606 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:53:59.739 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:04.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:09.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:15.125 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:20.270 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:25.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:30.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:35.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:40.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:45.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:51.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:54:56.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:01.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:06.420 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:11.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:16.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:21.884 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:26.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:32.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:37.204 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:42.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:47.441 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:52.537 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:55:57.641 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:02.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:03.571 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:56:07.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:12.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:18.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:23.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:28.430 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:33.579 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:38.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:43.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:49.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:54.103 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:56:59.211 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:04.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:06.748 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:57:09.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:14.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:19.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:24.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:29.898 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:35.006 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:40.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:45.231 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:50.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:57:55.540 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:00.663 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:05.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:09.959 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:58:10.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:15.992 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:21.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:26.351 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:31.574 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:36.737 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:41.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -17:58:43.080 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -17:58:46.160 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -18:47:17.984 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 58 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 59 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 67 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 69 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 73 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 75 common frames omitted -18:47:21.257 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -18:47:22.867 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Connect timed out -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:99) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -18:47:26.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:47:31.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:47:36.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:47:41.763 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:47:46.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:47:52.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:47:57.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:02.223 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:07.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:12.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:17.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:22.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:27.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:32.936 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:38.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:43.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:48.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:53.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:48:58.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:03.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:08.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:13.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:18.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:23.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:28.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:34.124 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:39.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:44.298 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:49.400 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:54.506 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:49:59.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:04.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:09.878 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:14.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:20.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:25.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:30.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:35.450 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:40.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:45.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:50.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:50:55.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:01.001 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:06.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:11.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:16.295 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:21.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:26.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:31.636 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:36.747 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:41.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:46.913 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:52.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:51:57.119 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:02.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:07.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:12.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:17.536 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:22.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:27.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:32.825 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:37.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:43.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:48.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:53.166 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:52:58.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:03.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:08.481 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:13.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:18.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:23.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:28.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:34.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:39.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:44.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:49.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:54.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:53:59.563 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:04.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:09.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:14.869 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:19.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:25.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:30.192 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:35.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:40.451 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:45.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:50.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:54:55.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:01.035 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:06.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:11.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:16.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:21.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:26.681 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:31.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:36.900 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:42.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:47.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:52.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:55:57.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:02.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:07.615 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:12.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:17.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:22.978 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:28.095 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:33.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:38.332 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:43.431 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:48.547 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:53.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:56:58.820 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:03.938 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:09.052 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:14.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:19.289 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:24.407 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:29.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:34.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:39.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:44.954 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:50.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:57:55.210 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:00.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:05.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:10.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:15.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:20.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:25.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:31.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:36.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:41.299 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:46.419 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:51.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:58:56.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:01.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:06.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:11.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:17.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:22.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:27.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:32.418 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:37.539 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:42.639 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:47.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:52.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -18:59:58.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:03.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:08.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:13.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:18.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:23.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:28.705 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:33.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:38.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:43.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:49.067 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:54.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:00:59.271 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:04.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:09.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:14.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:19.699 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:24.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:29.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:35.076 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:40.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:45.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:50.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:01:55.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:00.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:05.808 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:10.896 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:16.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:21.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:26.204 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:31.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:36.389 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:41.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:46.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:51.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:02:56.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:02.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:07.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:12.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:17.388 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:22.495 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:27.598 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:32.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:37.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:42.981 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:48.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:53.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:03:58.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:04:03.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:04:17.490 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 58 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 59 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 67 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 69 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 73 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 75 common frames omitted -19:04:32.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -19:04:37.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:04:42.896 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:04:47.972 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:04:53.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:04:58.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:03.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:08.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:13.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:18.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:23.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:28.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:33.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:39.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:44.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:49.275 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:54.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:05:59.462 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:04.566 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:09.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:14.796 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:19.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:24.980 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:30.075 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:35.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:40.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:45.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:50.522 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:06:55.604 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:00.685 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:05.775 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:10.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:15.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:21.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:26.230 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:31.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:36.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:41.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:46.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:51.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:07:56.914 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:02.012 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:07.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:12.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:17.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:22.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:27.454 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:32.555 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:37.641 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:42.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:47.837 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:52.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:08:57.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:03.036 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:08.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:13.178 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:18.281 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:23.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:28.471 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:33.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:38.657 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:43.745 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:48.846 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:53.937 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:09:59.029 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:04.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:09.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:14.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:19.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:24.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:29.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:34.777 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:39.919 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:45.046 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:50.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:10:55.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:00.355 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:05.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:10.534 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:15.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:20.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:25.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:30.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:36.096 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:41.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:46.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:51.403 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:11:56.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:01.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:06.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:11.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:16.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:22.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:27.168 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:32.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:37.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:42.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:47.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:52.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:12:57.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:02.989 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:08.080 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:13.232 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:18.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:23.409 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:28.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:33.627 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:38.733 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:43.812 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:48.907 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:54.014 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:13:59.074 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:04.167 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:09.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:14.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:19.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:24.653 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:27.841 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 58 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 59 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 67 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:226) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElement(MybatisXMLMapperBuilder.java:218) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.resultMapElements(MybatisXMLMapperBuilder.java:210) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:125) - ... 69 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 73 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 75 common frames omitted -19:14:29.813 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:34.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:40.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:45.193 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:50.276 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:14:55.392 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:00.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:05.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:10.702 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:15.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:20.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:25.996 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:31.090 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:36.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:41.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:46.405 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:51.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:15:56.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:01.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:06.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:11.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:16.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:22.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:27.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:32.285 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:37.386 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:42.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:47.581 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:52.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:16:57.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:02.905 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:07.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:13.104 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:18.198 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:23.302 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:28.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:33.478 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:38.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:43.680 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:48.780 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:53.880 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:17:58.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:04.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:09.148 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:14.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:19.326 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:24.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:29.493 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:34.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:35.836 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:18:39.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:44.782 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:49.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:18:54.986 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:00.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:05.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:09.919 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:19:10.339 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:15.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:20.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:25.603 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:30.692 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:35.788 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:40.930 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:42.954 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:19:46.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:51.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:19:56.264 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:01.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:06.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:11.658 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:15.970 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:20:16.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:21.920 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:27.027 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:32.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:37.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:42.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:47.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:49.000 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:20:52.639 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:20:57.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:02.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:08.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:09.476 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -19:21:09.633 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:648) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:636) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method 'sqlSessionFactory' threw exception with message: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:177) - at org.springframework.beans.factory.support.ConstructorResolver.instantiate(ConstructorResolver.java:644) - ... 58 common frames omitted -Caused by: java.io.IOException: Failed to parse mapping resource: 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]' - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:680) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.afterPropertiesSet(MybatisSqlSessionFactoryBean.java:553) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.getObject(MybatisSqlSessionFactoryBean.java:711) - at com.baomidou.mybatisplus.autoconfigure.MybatisPlusAutoConfiguration.sqlSessionFactory(MybatisPlusAutoConfiguration.java:224) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) - at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:140) - ... 59 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error parsing Mapper XML. The XML location is 'file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\mapper\car\SysCarMapper.xml]'. Cause: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:129) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.parse(MybatisXMLMapperBuilder.java:102) - at com.baomidou.mybatisplus.extension.spring.MybatisSqlSessionFactoryBean.buildSqlSessionFactory(MybatisSqlSessionFactoryBean.java:678) - ... 67 common frames omitted -Caused by: org.apache.ibatis.builder.BuilderException: Error resolving class. Cause: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:103) - at org.apache.ibatis.builder.xml.XMLStatementBuilder.parseStatementNode(XMLStatementBuilder.java:78) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.buildStatementFromContext(MybatisXMLMapperBuilder.java:145) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.buildStatementFromContext(MybatisXMLMapperBuilder.java:137) - at com.baomidou.mybatisplus.core.MybatisXMLMapperBuilder.configurationElement(MybatisXMLMapperBuilder.java:127) - ... 69 common frames omitted -Caused by: org.apache.ibatis.type.TypeException: Could not resolve type alias 'SysCar'. Cause: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:128) - at org.apache.ibatis.builder.BaseBuilder.resolveAlias(BaseBuilder.java:132) - at org.apache.ibatis.builder.BaseBuilder.resolveClass(BaseBuilder.java:101) - ... 73 common frames omitted -Caused by: java.lang.ClassNotFoundException: Cannot find class: SysCar - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:226) - at org.apache.ibatis.io.ClassLoaderWrapper.classForName(ClassLoaderWrapper.java:103) - at org.apache.ibatis.io.Resources.classForName(Resources.java:322) - at org.apache.ibatis.type.TypeAliasRegistry.resolveAlias(TypeAliasRegistry.java:124) - ... 75 common frames omitted -19:21:13.225 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:18.354 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:22.039 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:21:23.489 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:28.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:33.675 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:38.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:43.873 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:49.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:54.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:21:55.072 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:21:59.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:04.498 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:09.607 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:12.780 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -19:22:12.783 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -19:22:12.823 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 58 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 69 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 75 common frames omitted -19:22:14.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:19.858 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:24.947 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:28.133 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:22:30.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:35.283 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:40.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:45.626 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:50.768 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:22:55.995 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:01.163 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:23:01.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:06.402 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:11.538 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:16.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:21.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:26.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:32.129 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:34.211 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:23:37.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:42.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:47.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:52.430 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -19:23:52.434 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -19:23:52.473 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 58 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 69 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 75 common frames omitted -19:23:52.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:23:57.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:02.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:07.240 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:24:08.020 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:13.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:18.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:23.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:28.412 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:33.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:38.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:40.282 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:24:43.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:48.804 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:53.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:24:58.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:04.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:09.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:13.408 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:25:14.273 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:19.445 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:23.047 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8a264f91ed9ed5e67d858b08e1bf0993, Client-RequestTS=1726572320026, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 489999 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@413fc017[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] -19:25:23.047 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 489999 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@413fc017[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 714400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f2bbeb4[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 85 common frames omitted +09:05:39.859 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c2ed3bb04ce194420d84e80c9d3ca95c, Client-RequestTS=1727053536844, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 644400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60fdf0e2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] +09:05:39.859 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 644400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60fdf0e2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 489999 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@413fc017[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 644400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@60fdf0e2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 10 common frames omitted -19:25:24.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:29.757 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:34.964 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:40.156 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:45.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:46.635 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:25:50.545 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:25:55.720 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:00.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:06.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:11.174 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:16.331 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:20.014 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:21.394 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:24.593 [http-nio-9701-exec-4] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 765800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6329eb3c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] -19:26:24.593 [http-nio-9701-exec-4] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 765800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6329eb3c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] + ... 9 common frames omitted +09:05:40.014 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=800c31de0ba09fc645af541fafb9fdbc, Client-RequestTS=1727053539912, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:40.126 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=800c31de0ba09fc645af541fafb9fdbc, Client-RequestTS=1727053539912, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:40.236 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=800c31de0ba09fc645af541fafb9fdbc, Client-RequestTS=1727053539912, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:40.344 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=800c31de0ba09fc645af541fafb9fdbc, Client-RequestTS=1727053539912, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:40.344 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:40.515 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=89202fbb0bf82387937f40d1a1ff1bee, Client-RequestTS=1727053540406, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:40.625 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=89202fbb0bf82387937f40d1a1ff1bee, Client-RequestTS=1727053540406, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:40.733 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=89202fbb0bf82387937f40d1a1ff1bee, Client-RequestTS=1727053540406, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:40.842 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=89202fbb0bf82387937f40d1a1ff1bee, Client-RequestTS=1727053540406, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:40.842 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:40.999 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b9c6bf1d9c72ebca9905bcf10efb7fb, Client-RequestTS=1727053540893, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:41.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b9c6bf1d9c72ebca9905bcf10efb7fb, Client-RequestTS=1727053540893, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:41.217 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b9c6bf1d9c72ebca9905bcf10efb7fb, Client-RequestTS=1727053540893, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:41.327 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3b9c6bf1d9c72ebca9905bcf10efb7fb, Client-RequestTS=1727053540893, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:41.327 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:41.495 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0f99f6556096199699dadacf177c0a0, Client-RequestTS=1727053541387, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:41.603 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0f99f6556096199699dadacf177c0a0, Client-RequestTS=1727053541387, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:41.714 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0f99f6556096199699dadacf177c0a0, Client-RequestTS=1727053541387, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:41.825 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0f99f6556096199699dadacf177c0a0, Client-RequestTS=1727053541387, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:41.825 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:41.997 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a7292a1f565d5caf365a39537939d4c8, Client-RequestTS=1727053541887, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:42.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a7292a1f565d5caf365a39537939d4c8, Client-RequestTS=1727053541887, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:42.215 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a7292a1f565d5caf365a39537939d4c8, Client-RequestTS=1727053541887, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:42.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a7292a1f565d5caf365a39537939d4c8, Client-RequestTS=1727053541887, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:42.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:42.499 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca3c123844f1576690cf69c00cafc7b6, Client-RequestTS=1727053542388, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:42.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca3c123844f1576690cf69c00cafc7b6, Client-RequestTS=1727053542388, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:42.717 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca3c123844f1576690cf69c00cafc7b6, Client-RequestTS=1727053542388, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:42.826 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca3c123844f1576690cf69c00cafc7b6, Client-RequestTS=1727053542388, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:42.826 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:42.996 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72ce3833a3755da877ef7dc074555f15, Client-RequestTS=1727053542889, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:43.107 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72ce3833a3755da877ef7dc074555f15, Client-RequestTS=1727053542889, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:43.217 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72ce3833a3755da877ef7dc074555f15, Client-RequestTS=1727053542889, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:43.324 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=72ce3833a3755da877ef7dc074555f15, Client-RequestTS=1727053542889, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:43.324 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:43.478 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=91c871f3d15070870c3c9c3f6e47028a, Client-RequestTS=1727053543376, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:43.578 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=91c871f3d15070870c3c9c3f6e47028a, Client-RequestTS=1727053543376, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:43.679 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=91c871f3d15070870c3c9c3f6e47028a, Client-RequestTS=1727053543376, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:43.779 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=91c871f3d15070870c3c9c3f6e47028a, Client-RequestTS=1727053543376, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:43.779 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:43.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e4ca05a68cad5ae4c7fcc17c72396f20, Client-RequestTS=1727053543838, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:44.056 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e4ca05a68cad5ae4c7fcc17c72396f20, Client-RequestTS=1727053543838, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:44.167 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e4ca05a68cad5ae4c7fcc17c72396f20, Client-RequestTS=1727053543838, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:44.275 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e4ca05a68cad5ae4c7fcc17c72396f20, Client-RequestTS=1727053543838, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:44.275 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:44.440 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=79d9e4862f074def302d7b13b3db6c1b, Client-RequestTS=1727053544339, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:44.555 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=79d9e4862f074def302d7b13b3db6c1b, Client-RequestTS=1727053544339, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:44.664 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=79d9e4862f074def302d7b13b3db6c1b, Client-RequestTS=1727053544339, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:44.773 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=79d9e4862f074def302d7b13b3db6c1b, Client-RequestTS=1727053544339, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:44.773 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:44.938 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7a626bf41e2be0b9c09e29e3ef14736, Client-RequestTS=1727053544836, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:45.040 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7a626bf41e2be0b9c09e29e3ef14736, Client-RequestTS=1727053544836, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:45.140 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7a626bf41e2be0b9c09e29e3ef14736, Client-RequestTS=1727053544836, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:45.256 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7a626bf41e2be0b9c09e29e3ef14736, Client-RequestTS=1727053544836, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:45.256 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:45.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d02c9df759f8a242975656ee2230d7f, Client-RequestTS=1727053545318, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:45.536 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d02c9df759f8a242975656ee2230d7f, Client-RequestTS=1727053545318, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:45.645 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d02c9df759f8a242975656ee2230d7f, Client-RequestTS=1727053545318, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:45.752 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9d02c9df759f8a242975656ee2230d7f, Client-RequestTS=1727053545318, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:45.752 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:45.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7b2dbfb9bb0045eb6b3dad1cd19ad8c4, Client-RequestTS=1727053545814, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:46.030 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7b2dbfb9bb0045eb6b3dad1cd19ad8c4, Client-RequestTS=1727053545814, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:46.137 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7b2dbfb9bb0045eb6b3dad1cd19ad8c4, Client-RequestTS=1727053545814, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:46.239 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7b2dbfb9bb0045eb6b3dad1cd19ad8c4, Client-RequestTS=1727053545814, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:46.239 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:46.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3569710935e6a57ad45753b3cf1b71e, Client-RequestTS=1727053546294, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:46.515 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3569710935e6a57ad45753b3cf1b71e, Client-RequestTS=1727053546294, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:46.624 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3569710935e6a57ad45753b3cf1b71e, Client-RequestTS=1727053546294, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:46.733 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3569710935e6a57ad45753b3cf1b71e, Client-RequestTS=1727053546294, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:46.733 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:46.906 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5863cdca44ebd3a63d7f0c0db2df9f1d, Client-RequestTS=1727053546796, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:47.014 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5863cdca44ebd3a63d7f0c0db2df9f1d, Client-RequestTS=1727053546796, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:47.123 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5863cdca44ebd3a63d7f0c0db2df9f1d, Client-RequestTS=1727053546796, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:47.232 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5863cdca44ebd3a63d7f0c0db2df9f1d, Client-RequestTS=1727053546796, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:47.232 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:47.402 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bef70ec2b43e18cf0a28f55d0c8a9a97, Client-RequestTS=1727053547293, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:47.510 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bef70ec2b43e18cf0a28f55d0c8a9a97, Client-RequestTS=1727053547293, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:47.620 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bef70ec2b43e18cf0a28f55d0c8a9a97, Client-RequestTS=1727053547293, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:47.731 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bef70ec2b43e18cf0a28f55d0c8a9a97, Client-RequestTS=1727053547293, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:47.731 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:47.900 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e3f86ff24eb46e591a88a57f255be648, Client-RequestTS=1727053547794, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:48.007 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e3f86ff24eb46e591a88a57f255be648, Client-RequestTS=1727053547794, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:48.117 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e3f86ff24eb46e591a88a57f255be648, Client-RequestTS=1727053547794, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:48.225 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e3f86ff24eb46e591a88a57f255be648, Client-RequestTS=1727053547794, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:48.225 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:48.396 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=37c4839b79c4acb06ba539d365ecda01, Client-RequestTS=1727053548288, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:48.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=37c4839b79c4acb06ba539d365ecda01, Client-RequestTS=1727053548288, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:48.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=37c4839b79c4acb06ba539d365ecda01, Client-RequestTS=1727053548288, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:48.724 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=37c4839b79c4acb06ba539d365ecda01, Client-RequestTS=1727053548288, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:48.725 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:48.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc0b868f974c7d25972f1e5ec98c2963, Client-RequestTS=1727053548790, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.005 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc0b868f974c7d25972f1e5ec98c2963, Client-RequestTS=1727053548790, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc0b868f974c7d25972f1e5ec98c2963, Client-RequestTS=1727053548790, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.223 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc0b868f974c7d25972f1e5ec98c2963, Client-RequestTS=1727053548790, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.223 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:49.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aff55271da108da8ec7efc09171cebef, Client-RequestTS=1727053549285, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.505 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aff55271da108da8ec7efc09171cebef, Client-RequestTS=1727053549285, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aff55271da108da8ec7efc09171cebef, Client-RequestTS=1727053549285, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aff55271da108da8ec7efc09171cebef, Client-RequestTS=1727053549285, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.722 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:49.875 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0404361a0fda01d25b5a30864d350a56, Client-RequestTS=1727053549774, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:49.976 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0404361a0fda01d25b5a30864d350a56, Client-RequestTS=1727053549774, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:50.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0404361a0fda01d25b5a30864d350a56, Client-RequestTS=1727053549774, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:50.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0404361a0fda01d25b5a30864d350a56, Client-RequestTS=1727053549774, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:50.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:50.351 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1853c851b300acd8f58f12aaa7d8af31, Client-RequestTS=1727053550242, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:50.458 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1853c851b300acd8f58f12aaa7d8af31, Client-RequestTS=1727053550242, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:50.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1853c851b300acd8f58f12aaa7d8af31, Client-RequestTS=1727053550242, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:50.676 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1853c851b300acd8f58f12aaa7d8af31, Client-RequestTS=1727053550242, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:50.676 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:50.840 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=627946f69eeb2fe7b3a9ab364675671b, Client-RequestTS=1727053550739, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:50.945 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=627946f69eeb2fe7b3a9ab364675671b, Client-RequestTS=1727053550739, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:05:51.053 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=627946f69eeb2fe7b3a9ab364675671b, Client-RequestTS=1727053550739, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:05:51.162 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=627946f69eeb2fe7b3a9ab364675671b, Client-RequestTS=1727053550739, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:05:51.162 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:51.333 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=59c5d5912b6a9d85e648a308e5386800, Client-RequestTS=1727053551223, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:05:51.443 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUyM30.tKtwAXFb42i76avi6XoBD-bTXFyLKoYKz5tGf20a0RA, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=59c5d5912b6a9d85e648a308e5386800, Client-RequestTS=1727053551223, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:07:40.309 [http-nio-9707-exec-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUzN30.KCACoYbkUzVEw_6VVDp_TzjuiKcoNgSwWFo8XLYJqzM, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 554600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2a20aed3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] +09:07:40.309 [http-nio-9707-exec-9] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 554600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2a20aed3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -7713,7 +1496,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor115.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor83.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -7721,7 +1504,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor99.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor67.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -7734,9 +1517,9 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -7773,18 +1556,195 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 765800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6329eb3c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 554600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2a20aed3[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:26:26.483 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:31.685 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:36.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:41.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:45.348 [http-nio-9701-exec-6] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 101700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@28bd2498[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] -19:26:45.349 [http-nio-9701-exec-6] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 101700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@28bd2498[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] +09:07:47.029 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 189700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2d355072[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:07:54.263 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUzN30.KCACoYbkUzVEw_6VVDp_TzjuiKcoNgSwWFo8XLYJqzM, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 443200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@31dda96a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] +09:07:54.263 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 443200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@31dda96a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 443200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@31dda96a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a339c61, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@387c1a75, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@1d4686d9}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 14 common frames omitted +09:09:58.081 [http-nio-9707-exec-1] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleException,108] - 请求地址'/actuator/health',发生系统异常. +org.springframework.web.context.request.async.AsyncRequestNotUsableException: ServletOutputStream failed to flush: java.io.IOException: 你的主机中的软件中止了一个已建立的连接。 + at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleHttpServletResponse.handleIOException(StandardServletAsyncWebRequest.java:320) + at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.flush(StandardServletAsyncWebRequest.java:392) + at java.base/java.io.FilterOutputStream.flush(FilterOutputStream.java:153) + at com.fasterxml.jackson.core.json.UTF8JsonGenerator.flush(UTF8JsonGenerator.java:1200) + at com.fasterxml.jackson.databind.ObjectWriter.writeValue(ObjectWriter.java:1063) + at org.springframework.http.converter.json.AbstractJackson2HttpMessageConverter.writeInternal(AbstractJackson2HttpMessageConverter.java:483) + at org.springframework.http.converter.AbstractGenericHttpMessageConverter.write(AbstractGenericHttpMessageConverter.java:114) + at org.springframework.web.servlet.mvc.method.annotation.AbstractMessageConverterMethodProcessor.writeWithMessageConverters(AbstractMessageConverterMethodProcessor.java:297) + at org.springframework.web.servlet.mvc.method.annotation.HttpEntityMethodProcessor.handleReturnValue(HttpEntityMethodProcessor.java:245) + at org.springframework.web.method.support.HandlerMethodReturnValueHandlerComposite.handleReturnValue(HandlerMethodReturnValueHandlerComposite.java:78) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:136) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: org.apache.catalina.connector.ClientAbortException: java.io.IOException: 你的主机中的软件中止了一个已建立的连接。 + at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:303) + at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:265) + at org.apache.catalina.connector.CoyoteOutputStream.flush(CoyoteOutputStream.java:136) + at org.springframework.web.context.request.async.StandardServletAsyncWebRequest$LifecycleServletOutputStream.flush(StandardServletAsyncWebRequest.java:389) + ... 56 common frames omitted +Caused by: java.io.IOException: 你的主机中的软件中止了一个已建立的连接。 + at java.base/sun.nio.ch.SocketDispatcher.write0(Native Method) + at java.base/sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:54) + at java.base/sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:132) + at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:97) + at java.base/sun.nio.ch.IOUtil.write(IOUtil.java:53) + at java.base/sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:532) + at org.apache.tomcat.util.net.NioChannel.write(NioChannel.java:122) + at org.apache.tomcat.util.net.NioEndpoint$NioSocketWrapper.doWrite(NioEndpoint.java:1378) + at org.apache.tomcat.util.net.SocketWrapperBase.doWrite(SocketWrapperBase.java:764) + at org.apache.tomcat.util.net.SocketWrapperBase.flushBlocking(SocketWrapperBase.java:728) + at org.apache.tomcat.util.net.SocketWrapperBase.flush(SocketWrapperBase.java:712) + at org.apache.coyote.http11.Http11OutputBuffer$SocketOutputBuffer.flush(Http11OutputBuffer.java:559) + at org.apache.coyote.http11.filters.ChunkedOutputFilter.flush(ChunkedOutputFilter.java:157) + at org.apache.coyote.http11.Http11OutputBuffer.flush(Http11OutputBuffer.java:216) + at org.apache.coyote.http11.Http11Processor.flush(Http11Processor.java:1244) + at org.apache.coyote.AbstractProcessor.action(AbstractProcessor.java:400) + at org.apache.coyote.Response.action(Response.java:208) + at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:299) + ... 59 common frames omitted +09:56:09.920 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg2MH0.YDYCz4vCkQ2TzxV8b4uJ1_s5r6NP5I4yWtDyG_bfmXk, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a3d923b80a4507e4c21940886057967, Client-RequestTS=1727056566903, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 704600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@168c10b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] +09:56:09.921 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 704600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@168c10b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 704600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@168c10b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:59:10.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg2MH0.YDYCz4vCkQ2TzxV8b4uJ1_s5r6NP5I4yWtDyG_bfmXk, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=713535d4ac6ad66acfbaf2f666e5c394, Client-RequestTS=1727056747577, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 620700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f25a7bd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] +09:59:10.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 620700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f25a7bd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 620700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7f25a7bd[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:59:21.314 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 642100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d09566a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:59:24.426 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 623800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@682f3b96[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:39.006 [http-nio-9707-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg5Nn0.s3HuKpzW28pWzL-KxWOTIDwClHIFzHlbAMgBO3OsFI4, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 776500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@97584ca[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] +10:01:39.012 [http-nio-9707-exec-10] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 776500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@97584ca[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -7810,7 +1770,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor115.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor121.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -7818,7 +1778,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor99.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor105.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -7831,9 +1791,9 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -7870,111 +1830,14 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 101700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@28bd2498[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 776500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@97584ca[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:26:46.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:48.236 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 967200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1be7b881[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:51.918 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:54.238 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:57.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:26:59.831 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 275800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4d2d7b23[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:02.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:02.960 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 81699 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@710787a2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:06.179 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 982599 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5229e231[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:07.159 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:09.511 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 305500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@fc7551f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:12.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:17.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:22.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:24.595 [http-nio-9701-exec-10] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 233600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2894a8b0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] -19:27:24.595 [http-nio-9701-exec-10] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 233600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2894a8b0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] +10:01:58.247 [http-nio-9707-exec-5] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg5Nn0.s3HuKpzW28pWzL-KxWOTIDwClHIFzHlbAMgBO3OsFI4, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 602400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@b405ce7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] +10:01:58.247 [http-nio-9707-exec-5] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 602400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@b405ce7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -8000,7 +1863,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor115.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor121.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -8008,7 +1871,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor99.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor105.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -8021,9 +1884,9 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:633) at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:723) at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) @@ -8060,8116 +1923,38 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 233600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2894a8b0[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 602400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@b405ce7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 85 common frames omitted -19:27:27.267 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Connect timed out -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:99) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:27.492 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:32.546 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:33.945 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 44601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@77a23c3[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:37.068 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 468000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@781d4821[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:37.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:42.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:47.747 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:52.809 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:27:57.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:02.413 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 17 milliseconds, 414900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5b4d3ac9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:02.858 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:03.028 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:05.121 [http-nio-9701-exec-5] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 16 milliseconds, 66600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3dec5d4f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] -19:28:05.121 [http-nio-9701-exec-5] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 16 milliseconds, 66600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3dec5d4f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] +10:02:12.607 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg2MH0.YDYCz4vCkQ2TzxV8b4uJ1_s5r6NP5I4yWtDyG_bfmXk, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e5d3b35fa6e0f054f7b460fef7c5f63f, Client-RequestTS=1727056929603, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 632200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bd4013e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] +10:02:12.607 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 632200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bd4013e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor115.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor99.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 16 milliseconds, 66600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3dec5d4f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 632200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bd4013e[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 85 common frames omitted -19:28:05.546 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 799999 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1534f969[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] + ... 9 common frames omitted +10:04:24.499 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 564700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7734f928[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@53d76a86, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5dc2a025, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@6cc0cdd9}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:08.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:08.762 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 343300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4cb7fd93[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:12.080 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 956999 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6917f73c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:13.268 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:18.341 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:23.415 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:28.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:33.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:38.030 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:38.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:43.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:48.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:51.826 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 953200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2f1fbba7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:53.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:28:54.938 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 681900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@40d43f90[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:59.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:04.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:09.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:11.234 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:14.407 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:19.508 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:24.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:29.727 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:34.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:39.942 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:44.255 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Connect timed out -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:99) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:45.089 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:50.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:29:55.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:00.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:05.707 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:10.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:15.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:19.508 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:21.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:24.605 [http-nio-9701-exec-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 394800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@79112c53[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] -19:30:24.605 [http-nio-9701-exec-9] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 394800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@79112c53[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor115.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor99.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 394800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@79112c53[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 85 common frames omitted -19:30:26.184 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:31.293 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:33.845 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 3 milliseconds, 97100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@47c25d5f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:36.458 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:36.958 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 2 milliseconds, 998999 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@404295b9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:41.608 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:46.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:51.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:30:53.674 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:56.908 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:31:02.141 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:31:04.527 [http-nio-9701-exec-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 713600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@16e94ba5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] -19:31:04.527 [http-nio-9701-exec-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 713600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@16e94ba5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) - at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) - at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) - at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) - at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) - at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor115.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor99.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 713600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@16e94ba5[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@1a98a9c6, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@34b883c9, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@5699dfa8}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 85 common frames omitted -19:31:07.307 [http-nio-9701-exec-7] ERROR c.m.c.s.h.GlobalExceptionHandler - [handleRuntimeException,98] - 请求地址'/actuator/health',发生未知异常. -reactor.core.Exceptions$ReactiveException: java.lang.InterruptedException - at reactor.core.Exceptions.propagate(Exceptions.java:410) - at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:96) - at reactor.core.publisher.Mono.block(Mono.java:1779) - at org.springframework.boot.actuate.autoconfigure.health.HealthEndpointConfiguration$AdaptedReactiveHealthContributors$1.getHealth(HealthEndpointConfiguration.java:173) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) - at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor115.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) - at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) - at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) - at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor99.invoke(Unknown Source) - at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) - at java.base/java.lang.reflect.Method.invoke(Method.java:568) - at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) - at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) - at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) - at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) - at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) - at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) - at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) - at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) - at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) - at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) - at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) - at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) - at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) - at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) - at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) - at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) - at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) - at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) - at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) - at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) - at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) - at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) - at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) - at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) - at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) - at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) - at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) - at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) - at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer.acquireSharedInterruptibly(AbstractQueuedSynchronizer.java:1048) - at java.base/java.util.concurrent.CountDownLatch.await(CountDownLatch.java:230) - at reactor.core.publisher.BlockingSingleSubscriber.blockingGet(BlockingSingleSubscriber.java:91) - ... 73 common frames omitted -19:31:10.600 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -19:31:54.736 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:31:54.740 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:31:54.804 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigController': Unsatisfied dependency expressed through field 'configService': Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 58 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 69 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 75 common frames omitted -19:32:35.025 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:32:35.031 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:32:35.097 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigController': Unsatisfied dependency expressed through field 'configService': Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 58 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 69 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 75 common frames omitted -19:36:44.745 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:36:44.749 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:36:44.797 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigController': Unsatisfied dependency expressed through field 'configService': Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 58 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 69 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 75 common frames omitted -19:36:48.197 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -19:36:48.201 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -19:36:48.233 [Druid-ConnectionPool-Create-880740688] ERROR c.a.d.p.DruidDataSource - [run,2916] - create connection SQLException, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8, errorCode 1040, state 08004 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource$CreateConnectionThread.run(DruidDataSource.java:2914) -19:36:48.240 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarController': Unsatisfied dependency expressed through field 'sysCarService': Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.car.CloudCarApplication.main(CloudCarApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysCarMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-car\target\classes\com\muyu\car\mapper\SysCarMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 58 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 69 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 75 common frames omitted -19:37:49.264 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:37:49.267 [main] ERROR c.a.d.p.DruidDataSource - [init,977] - {dataSource-1} init error -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:37:49.298 [Druid-ConnectionPool-Create-750617950] ERROR c.a.d.p.DruidDataSource - [run,2916] - create connection SQLException, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8, errorCode 1040, state 08004 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource$CreateConnectionThread.run(DruidDataSource.java:2914) -19:37:49.305 [main] ERROR o.s.b.SpringApplication - [reportFailure,859] - Application run failed -org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigController': Unsatisfied dependency expressed through field 'configService': Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigServiceImpl': Unsatisfied dependency expressed through field 'baseMapper': Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:787) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 20 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sysConfigMapper' defined in file [E:\桌面\cloud-server-master\cloud-server\cloud-modules\cloud-modules-system\target\classes\com\muyu\system\mapper\SysConfigMapper.class]: Unsatisfied dependency expressed through bean property 'sqlSessionFactory': Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1518) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - ... 34 common frames omitted -Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'sqlSessionFactory' defined in class path resource [com/baomidou/mybatisplus/autoconfigure/MybatisPlusAutoConfiguration.class]: Unsatisfied dependency expressed through method 'sqlSessionFactory' parameter 0: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:795) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - ... 45 common frames omitted -Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'dataSource' defined in class path resource [com/baomidou/dynamic/datasource/spring/boot/autoconfigure/DynamicDataSourceAutoConfiguration.class]: druid create error - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1788) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - ... 58 common frames omitted -Caused by: com.baomidou.dynamic.datasource.exception.ErrorCreateDataSourceException: druid create error - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:139) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - ... 69 common frames omitted -Caused by: java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - ... 75 common frames omitted -19:57:08.827 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -19:57:10.211 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Connect timed out -java.net.SocketTimeoutException: Connect timed out - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:546) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.Socket.connect(Socket.java:633) - at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:531) - at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:636) - at java.base/sun.net.www.http.HttpClient.(HttpClient.java:279) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:384) - at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:406) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) - at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) - at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:99) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:57:17.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -19:57:18.159 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:57:22.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:57:27.568 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:57:32.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:57:37.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:57:43.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:57:43.347 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:57:48.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:57:51.308 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:57:53.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:57:58.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:03.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:08.827 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:13.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:16.414 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:58:19.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:24.177 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:24.358 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:58:29.324 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:34.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:39.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:44.708 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:49.524 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:58:49.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:55.008 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:58:58.479 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:59:00.133 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:05.319 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:10.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:15.620 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:20.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:23.637 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:59:25.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:30.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:32.610 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:59:36.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:41.291 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:46.479 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:51.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -19:59:56.675 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -19:59:56.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:01.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:05.645 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:00:06.933 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:12.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:17.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:22.376 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:27.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:29.728 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:00:32.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:37.865 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:38.665 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:00:43.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:48.191 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:53.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:00:58.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:02.754 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:01:03.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:08.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:11.686 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:01:13.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:19.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:24.272 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:29.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:34.552 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:35.788 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:01:39.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:44.768 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:01:44.815 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:49.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:01:55.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:00.190 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:05.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:08.802 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:02:10.484 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:15.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:17.790 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:02:20.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:25.860 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:30.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:36.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:41.279 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:41.821 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:02:46.445 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:50.815 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:02:51.577 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:02:56.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:01.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:07.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:12.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:14.838 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:03:17.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:22.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:23.849 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:03:27.677 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:32.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:38.015 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:43.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:47.873 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:03:48.172 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:53.342 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:03:56.914 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:03:58.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:03.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:08.828 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:13.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:19.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:20.965 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:04:24.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:29.452 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:30.984 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:04:34.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:39.670 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:44.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:49.993 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:04:53.991 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:04:55.165 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:00.282 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:04.037 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:05:05.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:10.549 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:15.710 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:20.915 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:26.069 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:27.019 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:05:31.226 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:36.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:37.070 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:05:41.576 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:46.729 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:51.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:05:56.991 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:00.070 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:06:02.170 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:07.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:10.110 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:06:12.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:17.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:22.704 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:27.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:32.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:33.116 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:06:38.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:43.128 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:06:43.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:48.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:53.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:06:58.656 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:03.769 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:06.145 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:07:08.892 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:14.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:16.162 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:07:19.160 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:24.292 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:29.427 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:34.560 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:39.176 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:07:39.694 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:44.810 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:49.191 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:07:49.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:07:55.085 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:00.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:05.315 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:10.439 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:12.219 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:08:15.548 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:20.678 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:22.214 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:08:25.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:30.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:36.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:41.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:45.264 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:08:46.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:51.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:08:55.283 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:08:56.665 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:01.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:06.945 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:12.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:17.241 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:18.393 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:09:22.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:27.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:29.363 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:09:32.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:37.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:42.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:48.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:51.431 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:09:53.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:09:58.460 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:02.384 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:10:03.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:08.759 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:13.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:19.050 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:24.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:24.518 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:10:29.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:34.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:35.415 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:10:39.660 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:44.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:49.932 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:55.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:10:57.592 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:11:00.207 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:05.309 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:08.470 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:11:10.432 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:15.562 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:20.721 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:25.726 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:30.756 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:11:30.956 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:36.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:41.274 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:41.524 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:11:46.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:51.556 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:11:56.713 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:01.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:03.868 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:12:07.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:12.187 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:14.616 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:12:17.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:22.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:27.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:32.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:36.882 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:12:37.811 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:42.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:47.650 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:12:48.087 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:53.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:12:58.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:03.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:08.619 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:09.937 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:13:13.766 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:18.931 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:20.705 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:13:24.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:29.220 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:34.318 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:39.485 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:42.963 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:13:44.547 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:49.605 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:53.725 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:13:54.756 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:13:59.888 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:05.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:10.157 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:15.336 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:16.001 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:14:20.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:25.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:27.753 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:14:30.790 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:35.948 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:41.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:46.183 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:49.030 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:14:51.300 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:14:56.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:00.791 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:15:01.466 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:06.609 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:11.742 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:16.850 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:21.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:22.187 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:15:27.111 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:32.242 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:33.854 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:15:37.369 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:42.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:47.622 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:52.819 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:15:55.311 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:15:57.976 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:03.131 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:06.881 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:16:08.304 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:13.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:18.504 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:23.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:28.346 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:16:28.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:33.952 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:39.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:39.910 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:16:44.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:49.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:54.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:16:59.616 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:01.399 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:17:04.758 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:09.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:12.958 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:17:14.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:20.127 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:25.266 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:30.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:34.420 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:17:35.531 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:40.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:45.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:46.009 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:17:50.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:17:56.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:01.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:06.414 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:07.472 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:18:11.528 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:16.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:19.090 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:18:21.872 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:27.059 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:32.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:37.328 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:40.503 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:18:42.455 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:47.557 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:52.127 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:18:52.671 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:18:57.814 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:02.921 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:08.078 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:13.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:13.592 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:19:18.374 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:23.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:25.178 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:19:28.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:33.904 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:39.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:44.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:46.674 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:19:49.321 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:54.398 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:19:58.201 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:19:59.593 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:04.735 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:09.840 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:14.990 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:19.696 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:20:20.115 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:25.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:30.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:31.241 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:20:35.507 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:40.585 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:45.701 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:50.800 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:20:52.751 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:20:55.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:01.057 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:05.340 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:21:06.197 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:11.303 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:16.459 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:21.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:25.945 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:21:26.797 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:31.925 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:37.071 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:38.372 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:21:42.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:47.395 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:52.491 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:57.610 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:21:58.973 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:22:02.786 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:07.941 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:11.386 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:22:13.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:18.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:23.209 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:28.426 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:32.001 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:22:33.600 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:38.713 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:43.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:44.417 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:22:48.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:54.114 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:22:59.255 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:04.373 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:06.048 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:23:09.554 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:14.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:17.512 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:23:19.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:24.957 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:30.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:35.195 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:39.068 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:23:40.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:45.496 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:50.545 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:23:50.630 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:23:55.806 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:00.961 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:06.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:11.379 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:12.086 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:24:16.525 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:21.664 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:23.627 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:24:26.765 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:31.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:37.134 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:42.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:45.107 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:24:47.445 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:52.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:24:56.693 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:24:57.690 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:02.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:07.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:13.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:18.203 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:25:18.329 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:23.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:28.614 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:29.838 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:25:33.709 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:38.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:44.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:49.181 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:51.267 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:25:54.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:25:59.461 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:02.887 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:26:04.599 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:09.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:14.906 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:20.034 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:24.442 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:26:25.229 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:30.357 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:35.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:36.026 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:26:40.587 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:45.740 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:50.832 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:55.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:26:57.533 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:27:01.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:06.202 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:09.076 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:27:11.372 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:16.492 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:21.684 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:26.855 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:30.559 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:27:32.003 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:37.194 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:42.229 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:27:42.297 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:47.410 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:52.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:27:57.703 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:02.855 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:03.611 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:28:07.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:13.149 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:15.269 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:28:18.290 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:23.472 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:28.631 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:33.791 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-366] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:36.662 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:28:38.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-367] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:44.083 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-368] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:48.342 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:28:49.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-369] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:54.335 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-370] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:28:59.475 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-371] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:04.640 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-372] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:09.690 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:29:09.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-373] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:14.943 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-374] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:20.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-375] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:21.417 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:29:25.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-376] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:30.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-377] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:35.586 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-378] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:40.697 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-379] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:42.822 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:29:45.853 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-380] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:50.960 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-381] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:29:55.568 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:29:56.113 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-382] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:01.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-383] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:06.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-384] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:11.544 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-385] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:15.850 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:30:16.641 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-386] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:21.829 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-387] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:26.953 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-388] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:28.606 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:30:32.109 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-389] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:37.239 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-390] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:42.370 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-391] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:47.523 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-392] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:48.902 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:30:52.679 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-393] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:30:57.803 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-394] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:01.665 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:31:02.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-395] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:08.060 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-396] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:13.188 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-397] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:18.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-398] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:21.926 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:31:23.505 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-399] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:28.676 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-400] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:33.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-401] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:34.787 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:31:38.923 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-402] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:44.152 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-403] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:49.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-404] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:54.503 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-405] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:31:55.073 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:31:59.652 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-406] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:04.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-407] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:07.898 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:32:09.927 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-408] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:15.025 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-409] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:20.179 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-410] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:25.346 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-411] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:28.225 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:32:30.465 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-412] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:35.629 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-413] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:40.805 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-414] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:42.139 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:32:45.909 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-415] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:51.055 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-416] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:32:56.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-417] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:01.390 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-418] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:01.407 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:33:06.590 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-419] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:11.715 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-420] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:15.254 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:33:16.820 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-421] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:21.951 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-422] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:27.117 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-423] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:32.314 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-424] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:34.546 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:33:37.480 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-425] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:42.662 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-426] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:47.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-427] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:48.317 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:33:53.018 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-428] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:33:58.143 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-429] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:03.306 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-430] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:07.573 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:08.476 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-431] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:13.632 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-432] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:18.798 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-433] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:21.350 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:24.026 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-434] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:29.175 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-435] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:34.375 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-436] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:39.564 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-437] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:40.671 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:44.698 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-438] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:49.794 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-439] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:34:54.427 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:54.538 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -20:34:57.531 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registryRemove(AdminBizClient.java:47) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:84) - at java.base/java.lang.Thread.run(Thread.java:833) -20:35:16.522 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:35:32.324 [main] ERROR c.a.d.p.DruidDataSource - [init,928] - init datasource error, url: jdbc:mysql://47.116.173.119:3306/one?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8 -java.sql.SQLNonTransientConnectionException: Data source rejected establishment of connection, message from server: "Too many connections" - at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:111) - at com.mysql.cj.jdbc.exceptions.SQLExceptionsMapping.translateException(SQLExceptionsMapping.java:122) - at com.mysql.cj.jdbc.ConnectionImpl.createNewIO(ConnectionImpl.java:815) - at com.mysql.cj.jdbc.ConnectionImpl.(ConnectionImpl.java:438) - at com.mysql.cj.jdbc.ConnectionImpl.getInstance(ConnectionImpl.java:241) - at com.mysql.cj.jdbc.NonRegisteringDriver.connect(NonRegisteringDriver.java:189) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:132) - at com.alibaba.druid.filter.FilterAdapter.connection_connect(FilterAdapter.java:764) - at com.alibaba.druid.filter.FilterEventAdapter.connection_connect(FilterEventAdapter.java:33) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.filter.stat.StatFilter.connection_connect(StatFilter.java:244) - at com.alibaba.druid.filter.FilterChainImpl.connection_connect(FilterChainImpl.java:126) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1687) - at com.alibaba.druid.pool.DruidAbstractDataSource.createPhysicalConnection(DruidAbstractDataSource.java:1803) - at com.alibaba.druid.pool.DruidDataSource.init(DruidDataSource.java:924) - at com.baomidou.dynamic.datasource.creator.druid.DruidDataSourceCreator.createDataSource(DruidDataSourceCreator.java:137) - at com.baomidou.dynamic.datasource.creator.DefaultDataSourceCreator.createDataSource(DefaultDataSourceCreator.java:97) - at com.baomidou.dynamic.datasource.provider.AbstractDataSourceProvider.createDataSourceMap(AbstractDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.provider.YmlDynamicDataSourceProvider.loadDataSources(YmlDynamicDataSourceProvider.java:53) - at com.baomidou.dynamic.datasource.DynamicRoutingDataSource.afterPropertiesSet(DynamicRoutingDataSource.java:229) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1835) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1784) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:600) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.ConstructorResolver.resolveAutowiredArgument(ConstructorResolver.java:904) - at org.springframework.beans.factory.support.ConstructorResolver.createArgumentArray(ConstructorResolver.java:782) - at org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:542) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1337) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1167) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:562) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.autowireByType(AbstractAutowireCapableBeanFactory.java:1503) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1412) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.config.DependencyDescriptor.resolveCandidate(DependencyDescriptor.java:254) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1443) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:1353) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.resolveFieldValue(AutowiredAnnotationBeanPostProcessor.java:784) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:767) - at org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:145) - at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessProperties(AutowiredAnnotationBeanPostProcessor.java:508) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1421) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:599) - at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:522) - at org.springframework.beans.factory.support.AbstractBeanFactory.lambda$doGetBean$0(AbstractBeanFactory.java:337) - at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:234) - at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:335) - at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:200) - at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:975) - at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:962) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:624) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.system.CloudSystemApplication.main(CloudSystemApplication.java:19) -20:35:38.378 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-1] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1932] - Failed to check/redeclare auto-delete queue(s). -org.springframework.amqp.AmqpConnectException: java.net.ConnectException: Connection refused: no further information - at org.springframework.amqp.rabbit.support.RabbitExceptionTranslator.convertRabbitAccessException(RabbitExceptionTranslator.java:61) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:622) - at org.springframework.amqp.rabbit.connection.CachingConnectionFactory.createConnection(CachingConnectionFactory.java:726) - at org.springframework.amqp.rabbit.connection.ConnectionFactoryUtils.createConnection(ConnectionFactoryUtils.java:257) - at org.springframework.amqp.rabbit.core.RabbitTemplate.doExecute(RabbitTemplate.java:2249) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2222) - at org.springframework.amqp.rabbit.core.RabbitTemplate.execute(RabbitTemplate.java:2202) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueInfo(RabbitAdmin.java:467) - at org.springframework.amqp.rabbit.core.RabbitAdmin.getQueueProperties(RabbitAdmin.java:451) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.attemptDeclarations(AbstractMessageListenerContainer.java:1960) - at org.springframework.amqp.rabbit.listener.AbstractMessageListenerContainer.redeclareElementsIfNecessary(AbstractMessageListenerContainer.java:1924) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.initialize(SimpleMessageListenerContainer.java:1478) - at org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer$AsyncMessageProcessingConsumer.run(SimpleMessageListenerContainer.java:1320) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.net.ConnectException: Connection refused: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:542) - at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:597) - at java.base/java.net.SocksSocketImpl.connect(SocksSocketImpl.java:327) - at java.base/java.net.Socket.connect(Socket.java:633) - at com.rabbitmq.client.impl.SocketFrameHandlerFactory.create(SocketFrameHandlerFactory.java:61) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1249) - at com.rabbitmq.client.ConnectionFactory.newConnection(ConnectionFactory.java:1198) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connectAddresses(AbstractConnectionFactory.java:668) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.connect(AbstractConnectionFactory.java:637) - at org.springframework.amqp.rabbit.connection.AbstractConnectionFactory.createBareConnection(AbstractConnectionFactory.java:584) - ... 12 common frames omitted -20:35:40.790 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:35:43.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-2] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:35:48.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-3] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:35:49.557 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:35:53.781 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-4] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:35:58.916 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-5] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:04.072 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-6] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:09.221 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-7] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:13.820 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:14.361 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-8] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:19.513 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-9] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:22.720 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:24.624 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-10] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:29.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-11] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:34.866 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-12] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:40.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-13] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:45.155 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-14] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:46.853 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:50.296 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-15] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:55.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-16] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:36:55.756 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:37:00.567 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-17] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:05.666 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-18] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:10.744 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-19] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:15.881 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-20] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:19.917 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:37:20.962 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-21] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:26.084 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-22] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:29.917 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:37:31.173 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-23] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:36.236 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-24] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:41.350 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-25] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:46.443 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-26] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:51.543 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-27] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:37:52.979 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:37:56.673 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-28] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:01.838 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-29] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:03.102 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:38:06.963 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-30] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:12.093 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-31] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:17.186 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-32] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:22.308 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-33] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:26.031 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:38:27.437 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-34] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:32.530 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-35] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:36.134 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:38:37.649 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-36] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:42.831 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-37] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:47.959 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-38] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:53.099 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-39] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:58.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-40] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:38:59.079 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:39:03.312 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-41] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:08.416 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-42] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:09.158 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:39:13.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-43] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:18.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-44] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:23.732 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-45] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:28.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-46] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:32.100 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:39:34.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-47] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:39.139 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-48] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:42.199 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:39:44.271 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-49] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:49.411 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-50] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:54.517 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-51] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:39:59.674 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-52] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:04.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-53] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:05.142 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:40:09.926 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-54] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:15.032 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-55] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:15.233 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:40:20.142 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-56] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:25.238 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-57] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:30.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-58] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:35.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-59] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:38.168 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:40:40.628 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-60] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:45.792 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-61] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:48.350 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:40:50.935 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-62] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:40:56.081 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-63] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:01.234 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-64] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:06.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-65] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:11.209 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:41:11.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-66] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:16.818 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-67] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:21.503 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:41:21.965 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-68] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:27.097 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-69] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:32.249 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-70] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:37.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-71] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:42.578 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-72] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:44.231 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:41:47.770 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-73] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:52.966 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-74] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:41:54.521 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:41:58.204 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-75] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:03.399 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-76] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:08.520 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-77] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:13.700 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-78] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:17.260 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:42:18.851 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-79] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:24.051 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-80] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:27.590 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:42:29.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-81] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:34.444 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-82] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:39.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-83] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:44.753 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-84] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:49.817 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-85] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:42:50.288 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:42:55.011 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-86] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:00.219 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-87] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:00.629 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:43:05.380 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-88] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:10.595 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-89] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:15.689 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-90] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:20.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-91] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:23.348 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:43:26.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-92] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:31.205 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-93] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:33.686 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:43:36.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-94] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:41.425 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-95] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:46.487 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-96] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:51.651 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-97] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:43:56.418 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:43:56.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-98] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:02.041 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-99] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:06.849 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:44:07.203 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-100] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:12.401 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-101] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:17.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-102] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:22.799 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-103] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:27.816 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-104] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:29.481 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:44:32.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-105] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:38.049 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-106] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:39.884 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:44:43.108 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-107] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:48.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-108] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:53.541 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-109] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:44:58.762 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-110] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:02.525 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:45:03.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-111] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:09.146 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-112] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:12.944 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:45:14.347 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-113] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:19.521 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-114] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:24.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-115] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:29.894 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-116] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:35.077 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-117] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:35.663 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:45:40.252 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-118] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:45.440 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-119] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:45.968 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:45:50.481 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-120] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:45:55.691 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-121] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:00.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-122] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:05.902 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-123] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:08.724 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:46:11.147 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-124] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:16.320 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-125] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:18.997 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:46:21.499 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-126] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:26.533 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-127] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:31.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-128] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:36.885 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-129] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:41.928 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-130] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:42.782 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:46:46.999 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-131] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:52.052 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:46:52.201 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-132] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:46:57.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-133] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:02.512 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-134] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:07.717 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-135] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:12.907 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-136] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:15.847 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:47:18.118 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-137] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:23.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-138] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:25.174 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:47:28.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-139] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:33.788 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-140] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:38.882 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-141] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:44.063 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-142] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:48.881 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:47:49.256 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-143] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:54.449 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-144] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:47:58.280 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:47:59.654 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-145] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:04.845 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-146] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:10.066 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-147] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:15.316 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-148] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:20.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-149] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:21.901 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:48:25.646 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-150] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:30.886 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-151] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:31.354 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:48:36.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-152] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:41.262 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-153] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:46.288 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-154] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:51.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-155] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:48:55.017 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:48:56.718 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-156] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:01.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-157] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:04.368 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:49:07.116 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-158] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:12.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-159] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:17.365 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-160] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:22.387 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-161] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:27.602 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-162] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:28.061 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:49:32.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-163] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:37.430 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:49:37.848 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-164] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:42.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-165] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:48.092 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-166] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:53.136 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-167] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:49:58.345 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-168] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:01.082 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:50:03.368 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-169] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:08.569 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-170] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:10.566 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:50:13.795 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-171] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:19.017 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-172] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:24.233 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-173] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:29.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-174] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:34.217 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:50:34.422 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-175] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:39.650 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-176] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:43.680 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:50:44.835 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-177] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:50.030 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-178] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:50:55.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-179] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:00.287 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-180] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:05.446 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-181] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:07.366 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:51:10.617 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-182] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:15.847 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-183] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:16.864 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:51:21.040 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-184] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:26.277 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-185] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:31.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-186] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:36.695 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-187] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:40.511 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:51:41.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-188] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:47.065 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-189] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:50.972 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:51:52.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-190] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:51:57.501 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-191] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:02.683 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-192] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:07.861 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-193] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:13.070 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-194] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:13.591 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:52:18.265 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-195] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:23.428 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-196] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:24.043 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:52:28.634 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-197] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:33.839 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-198] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:39.045 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-199] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:44.062 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-200] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:46.667 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:52:49.105 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-201] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:54.311 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-202] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:52:57.081 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:52:59.502 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-203] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:04.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-204] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:09.687 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-205] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:14.822 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-206] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:19.719 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:53:19.977 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-207] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:25.154 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-208] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:30.164 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-209] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:30.194 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:53:35.334 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-210] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:40.532 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-211] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:45.584 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-212] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:50.751 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-213] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:53:52.827 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:53:55.871 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-214] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:00.988 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-215] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:03.341 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:54:06.112 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-216] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:11.218 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-217] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:16.367 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-218] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:21.511 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-219] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:25.969 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:54:26.625 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-220] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:31.746 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-221] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:36.532 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:54:36.830 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-222] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:41.958 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-223] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:47.058 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-224] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:52.217 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-225] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:57.371 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-226] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:54:59.125 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:55:02.514 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-227] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:07.648 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-228] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:09.699 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:55:12.834 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-229] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:17.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-230] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:23.110 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-231] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:28.222 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-232] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:32.286 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:55:33.384 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-233] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:38.500 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-234] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:42.825 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:55:43.633 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-235] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:48.778 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-236] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:53.893 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-237] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:55:59.063 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-238] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:04.200 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-239] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:05.395 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:56:09.317 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-240] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:14.429 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-241] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:15.863 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:56:19.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-242] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:24.712 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-243] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:29.890 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-244] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:35.007 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-245] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:38.588 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:56:40.158 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-246] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:45.337 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-247] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:48.901 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:56:50.510 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-248] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:56:55.667 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-249] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:00.773 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-250] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:05.911 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-251] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:11.047 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-252] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:11.651 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:57:16.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-253] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:21.286 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-254] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:22.590 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:57:26.477 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-255] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:31.643 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-256] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:36.868 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-257] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:41.984 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-258] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:44.679 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:57:47.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-259] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:52.216 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-260] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:57:55.635 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:57:57.349 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-261] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:02.509 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-262] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:07.604 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-263] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:12.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-264] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:17.792 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:58:17.917 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-265] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:23.082 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-266] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:28.254 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-267] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:28.670 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:58:33.396 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-268] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:38.515 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-269] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:43.647 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-270] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:48.787 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-271] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:50.828 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:58:53.891 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-272] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:58:59.023 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-273] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:01.705 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:59:04.145 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-274] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:09.258 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-275] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:14.417 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-276] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:19.561 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-277] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:23.865 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:59:24.672 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-278] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:29.842 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-279] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:34.794 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -20:59:34.968 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-280] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:40.024 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-281] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:45.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-282] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:50.442 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-283] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:55.468 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-284] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -20:59:56.960 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:00:00.526 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-285] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:05.529 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-286] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:07.822 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:00:10.711 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-287] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:15.859 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-288] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:20.939 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-289] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:26.056 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-290] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:29.998 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:00:31.196 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-291] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:36.348 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-292] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:40.854 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:00:41.490 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-293] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:46.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-294] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:51.725 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-295] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:00:56.903 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-296] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:02.010 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-297] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:03.077 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:01:07.098 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-298] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:12.199 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-299] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:13.911 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:01:17.340 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-300] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:22.464 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-301] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:27.594 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-302] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:32.771 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-303] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:37.180 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:01:37.912 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-304] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:43.068 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-305] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:47.068 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:01:48.185 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-306] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:53.213 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-307] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:01:58.215 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-308] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:03.408 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-309] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:08.572 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-310] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:10.281 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:02:13.736 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-311] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:18.944 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-312] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:20.095 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:02:24.100 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-313] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:29.243 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-314] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:34.421 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-315] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:39.580 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-316] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:44.412 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:02:44.741 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-317] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:49.870 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-318] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:02:53.240 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:02:55.031 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-319] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:00.248 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-320] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:05.383 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-321] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:10.559 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-322] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:15.752 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-323] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:18.531 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:03:20.889 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-324] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:25.998 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-325] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:26.446 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:03:31.102 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-326] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:36.251 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-327] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:41.353 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-328] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:46.524 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-329] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:51.635 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:03:51.644 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-330] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:56.802 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-331] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:03:59.617 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:04:01.974 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-332] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:07.161 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-333] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:12.250 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-334] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:17.424 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-335] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:22.565 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-336] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:24.729 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:04:27.730 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-337] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:32.655 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:04:32.875 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-338] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:38.016 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-339] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:43.122 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-340] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:48.253 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-341] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:53.330 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-342] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:04:57.773 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:04:58.469 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-343] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:03.553 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-344] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:05.684 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:05:08.669 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-345] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:13.843 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-346] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:18.970 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-347] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:24.044 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-348] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:29.169 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-349] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:30.884 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:05:34.322 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-350] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:38.725 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:05:39.474 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-351] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:44.591 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-352] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:49.688 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-353] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:54.824 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-354] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:05:59.982 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-355] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:03.918 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:06:05.121 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-356] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:10.235 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-357] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:11.873 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:06:15.352 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-358] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:20.551 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-359] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:25.686 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-360] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:30.833 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-361] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:35.985 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-362] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:37.057 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:06:41.128 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-363] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:44.955 [xxl-job, executor ExecutorRegistryThread] ERROR c.x.j.c.u.XxlJobRemotingUtil - [postBody,143] - Read timed out -java.net.SocketTimeoutException: Read timed out - at java.base/sun.nio.ch.NioSocketImpl.timedRead(NioSocketImpl.java:283) - at java.base/sun.nio.ch.NioSocketImpl.implRead(NioSocketImpl.java:309) - at java.base/sun.nio.ch.NioSocketImpl.read(NioSocketImpl.java:350) - at java.base/sun.nio.ch.NioSocketImpl$1.read(NioSocketImpl.java:803) - at java.base/java.net.Socket$SocketInputStream.read(Socket.java:966) - at java.base/java.io.BufferedInputStream.fill(BufferedInputStream.java:244) - at java.base/java.io.BufferedInputStream.read1(BufferedInputStream.java:284) - at java.base/java.io.BufferedInputStream.read(BufferedInputStream.java:343) - at java.base/sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:824) - at java.base/sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:759) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1688) - at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1589) - at java.base/java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:529) - at com.xxl.job.core.util.XxlJobRemotingUtil.postBody(XxlJobRemotingUtil.java:119) - at com.xxl.job.core.biz.client.AdminBizClient.registry(AdminBizClient.java:42) - at com.xxl.job.core.thread.ExecutorRegistryThread$1.run(ExecutorRegistryThread.java:48) - at java.base/java.lang.Thread.run(Thread.java:833) -21:06:46.212 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-364] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). -21:06:51.301 [org.springframework.amqp.rabbit.RabbitListenerEndpointContainer#0-365] ERROR o.s.a.r.l.SimpleMessageListenerContainer - [redeclareElementsIfNecessary,1935] - Failed to check/redeclare auto-delete queue(s). + at java.base/java.lang.Thread.run(Thread.java:842) diff --git a/logs/cloud-system/info.2024-09-16.log b/logs/cloud-system/info.2024-09-16.log index d91398f..5dd13e1 100644 --- a/logs/cloud-system/info.2024-09-16.log +++ b/logs/cloud-system/info.2024-09-16.log @@ -1,336 +1,86 @@ -20:12:29.099 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:47.271 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:50.441 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:13:50.441 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:13:50.526 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:13:54.922 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -20:13:54.924 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -20:13:54.926 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -20:13:59.881 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:14:02.033 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:14:03.947 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2168ed92[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:14:03.947 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4d27716b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:14:03.947 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@720a86ef[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:14:04.009 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -20:14:04.009 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -20:14:04.147 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -20:14:04.320 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:14:04.320 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:14:04.320 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:14:04.367 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:14:04.372 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:14:04.372 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:14:04.832 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 73cc8b52-54a6-4805-aa44-75aa8cc49f9e -20:14:04.832 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->73cc8b52-54a6-4805-aa44-75aa8cc49f9e -20:14:04.832 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [73cc8b52-54a6-4805-aa44-75aa8cc49f9e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:14:04.832 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [73cc8b52-54a6-4805-aa44-75aa8cc49f9e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:14:04.832 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [73cc8b52-54a6-4805-aa44-75aa8cc49f9e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:14:04.832 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [73cc8b52-54a6-4805-aa44-75aa8cc49f9e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:14:04.832 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:14:05.066 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [73cc8b52-54a6-4805-aa44-75aa8cc49f9e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726488846602_39.144.43.42_62467 -20:14:05.066 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [73cc8b52-54a6-4805-aa44-75aa8cc49f9e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:14:05.066 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [73cc8b52-54a6-4805-aa44-75aa8cc49f9e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801138b88 -20:14:05.066 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [73cc8b52-54a6-4805-aa44-75aa8cc49f9e] Notify connected event to listeners. -20:14:05.066 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:14:05.066 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.0.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:14:05.129 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.0.139:9701 register finished -20:14:05.436 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 21.431 seconds (process running for 22.059) -20:14:05.436 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:14:05.436 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:14:05.436 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -20:14:05.452 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -20:14:05.452 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -20:14:05.452 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -20:14:05.452 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:14:05.452 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -20:14:05.452 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -20:14:05.452 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -20:14:05.452 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -20:14:05.732 [RMI TCP Connection(2)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:22:24.786 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:22:24.850 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.0.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -20:22:24.850 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:22:24.850 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:22:24.851 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:22:24.851 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:22:24.851 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:22:24.852 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:22:24.852 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.0.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:22:24.931 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:22:24.931 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:22:24.931 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->73cc8b52-54a6-4805-aa44-75aa8cc49f9e -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5a01fddc[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 166] -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5f36f2c3[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:22:24.932 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726488846602_39.144.43.42_62467 -20:22:24.934 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6b380cd4[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 109] -20:22:24.935 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->73cc8b52-54a6-4805-aa44-75aa8cc49f9e -20:22:24.935 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:22:24.935 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:22:24.936 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:22:24.946 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -20:22:24.948 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -20:22:24.956 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -20:22:24.956 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -20:22:24.956 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -20:27:58.747 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:28:01.015 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:28:01.016 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:28:01.070 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:28:04.259 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -20:28:04.260 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -20:28:04.260 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -20:28:07.515 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:28:08.864 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:28:09.962 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4159c03b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:28:09.962 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1236926e[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:28:09.962 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@6d2f808d[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:28:09.989 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -20:28:09.989 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -20:28:10.044 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -20:28:10.206 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:28:10.207 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:28:10.207 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:28:10.211 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:28:10.213 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:28:10.213 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:28:10.696 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 75df6636-0d80-4bfd-855c-308f01284a88 -20:28:10.698 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->75df6636-0d80-4bfd-855c-308f01284a88 -20:28:10.698 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [75df6636-0d80-4bfd-855c-308f01284a88] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:28:10.698 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [75df6636-0d80-4bfd-855c-308f01284a88] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:28:10.698 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [75df6636-0d80-4bfd-855c-308f01284a88] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:28:10.699 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [75df6636-0d80-4bfd-855c-308f01284a88] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:28:10.699 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:28:10.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [75df6636-0d80-4bfd-855c-308f01284a88] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489692457_39.144.43.42_62481 -20:28:10.923 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [75df6636-0d80-4bfd-855c-308f01284a88] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:28:10.924 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [75df6636-0d80-4bfd-855c-308f01284a88] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801137ae0 -20:28:10.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [75df6636-0d80-4bfd-855c-308f01284a88] Notify connected event to listeners. -20:28:10.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:28:10.925 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.0.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:28:11.069 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.0.139:9701 register finished -20:28:11.260 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 15.756 seconds (process running for 16.357) -20:28:11.269 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:28:11.269 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:28:11.269 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -20:28:11.275 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -20:28:11.275 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -20:28:11.276 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -20:28:11.276 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:28:11.276 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -20:28:11.276 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -20:28:11.277 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -20:28:11.277 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -20:28:11.500 [RMI TCP Connection(2)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:31:10.792 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:31:10.888 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.0.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -20:31:10.888 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:31:10.888 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:31:10.889 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:31:10.889 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:31:10.889 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:31:10.889 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:31:10.890 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.0.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:31:10.929 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->75df6636-0d80-4bfd-855c-308f01284a88 -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5212a3dd[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 59] -20:31:10.930 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:31:10.931 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6a297af1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:31:10.931 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489692457_39.144.43.42_62481 -20:31:10.933 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7f2ef493[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 45] -20:31:10.933 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->75df6636-0d80-4bfd-855c-308f01284a88 -20:31:10.933 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:31:10.933 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:31:10.933 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:31:10.941 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -20:31:10.942 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -20:31:10.946 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -20:31:10.946 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -20:31:10.946 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -20:31:27.246 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:31:30.410 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:31:30.411 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:31:30.493 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:31:33.295 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -20:31:33.297 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -20:31:33.297 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -20:31:37.871 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:31:39.556 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:31:40.787 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@69fcec7c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:31:40.787 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@38aca984[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:31:40.787 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@8179cad[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:31:40.926 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -20:31:41.068 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:31:41.069 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:31:41.069 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:31:41.073 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:31:41.076 [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:41.076 [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:41.523 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ba41964f-0f30-4452-8b08-de19d5f88cb8 -20:31:41.525 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ba41964f-0f30-4452-8b08-de19d5f88cb8 -20:31:41.525 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba41964f-0f30-4452-8b08-de19d5f88cb8] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:31:41.526 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba41964f-0f30-4452-8b08-de19d5f88cb8] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:31:41.526 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba41964f-0f30-4452-8b08-de19d5f88cb8] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:31:41.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba41964f-0f30-4452-8b08-de19d5f88cb8] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:31:41.527 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:31:41.677 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba41964f-0f30-4452-8b08-de19d5f88cb8] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489903243_39.144.43.42_62494 -20:31:41.678 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba41964f-0f30-4452-8b08-de19d5f88cb8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:31:41.678 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba41964f-0f30-4452-8b08-de19d5f88cb8] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801128678 -20:31:41.678 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ba41964f-0f30-4452-8b08-de19d5f88cb8] Notify connected event to listeners. -20:31:41.678 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:31:41.679 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.0.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:31:41.717 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.0.139:9701 register finished -20:31:41.903 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 17.989 seconds (process running for 18.539) -20:31:41.911 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:31:41.911 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:31:41.912 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -20:31:41.917 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -20:31:41.917 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -20:31:41.918 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -20:31:41.918 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:31:41.919 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -20:31:41.919 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -20:31:41.919 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -20:31:41.919 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -20:31:42.440 [RMI TCP Connection(3)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:32:14.432 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:32:14.463 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.0.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -20:32:14.463 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:32:14.463 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:32:14.463 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:32:14.463 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:32:14.464 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:32:14.464 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:32:14.464 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.0.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:32:14.631 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation UNREGISTER for DEFAULT_GROUP@@cloud-system -20:32:14.649 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:32:14.651 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:32:14.652 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:32:14.652 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ba41964f-0f30-4452-8b08-de19d5f88cb8 -20:32:14.652 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@e0ad432[Running, pool size = 1, active threads = 1, queued tasks = 0, completed tasks = 10] -20:32:14.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:32:14.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@147885a9[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:32:14.652 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489903243_39.144.43.42_62494 -20:32:14.658 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1a647147[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 17] -20:32:14.658 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ba41964f-0f30-4452-8b08-de19d5f88cb8 -20:32:14.659 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:32:14.659 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:32:14.659 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:32:14.667 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -20:32:14.669 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -20:32:14.672 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -20:32:14.672 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -20:32:14.672 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -21:04:42.147 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -21:04:44.254 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -21:04:44.254 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -21:04:44.314 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -21:04:47.371 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -21:04:47.372 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -21:04:47.373 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -21:04:50.619 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -21:04:51.716 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -21:04:52.642 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7439b2aa[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -21:04:52.642 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@65a124a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -21:04:52.642 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@514abad9[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -21:04:52.667 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -21:04:52.668 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -21:04:52.726 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -21:04:52.849 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -21:04:52.850 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -21:04:52.850 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -21:04:52.855 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -21:04:52.858 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -21:04:52.858 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -21:04:53.042 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of d4a32068-ad4f-4d55-90f3-a54a4ec907fd -21:04:53.044 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->d4a32068-ad4f-4d55-90f3-a54a4ec907fd -21:04:53.044 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4a32068-ad4f-4d55-90f3-a54a4ec907fd] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -21:04:53.045 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4a32068-ad4f-4d55-90f3-a54a4ec907fd] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -21:04:53.046 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4a32068-ad4f-4d55-90f3-a54a4ec907fd] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -21:04:53.046 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4a32068-ad4f-4d55-90f3-a54a4ec907fd] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -21:04:53.046 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -21:04:53.322 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4a32068-ad4f-4d55-90f3-a54a4ec907fd] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726491894812_39.144.43.42_63067 -21:04:53.322 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4a32068-ad4f-4d55-90f3-a54a4ec907fd] Notify connected event to listeners. -21:04:53.322 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4a32068-ad4f-4d55-90f3-a54a4ec907fd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -21:04:53.323 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -21:04:53.323 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [d4a32068-ad4f-4d55-90f3-a54a4ec907fd] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801140228 -21:04:53.324 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.0.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -21:04:53.408 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.0.139:9701 register finished -21:04:53.568 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 14.499 seconds (process running for 15.203) -21:04:53.576 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -21:04:53.576 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -21:04:53.577 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -21:04:53.583 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -21:04:53.583 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -21:04:53.584 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -21:04:53.584 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -21:04:53.584 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -21:04:53.585 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -21:04:53.585 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -21:04:53.585 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -21:04:53.974 [RMI TCP Connection(5)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -21:04:58.821 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -21:04:58.886 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.0.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -21:04:58.886 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -21:04:58.886 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -21:04:58.886 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -21:04:58.886 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -21:04:58.887 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -21:04:58.887 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -21:04:58.887 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.0.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -21:04:58.926 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -21:04:58.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -21:04:58.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -21:04:58.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -21:04:58.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -21:04:58.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -21:04:58.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -21:04:58.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -21:04:58.928 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -21:04:58.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -21:04:58.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -21:04:58.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -21:04:58.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->d4a32068-ad4f-4d55-90f3-a54a4ec907fd -21:04:58.929 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3f5a1506[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1] -21:04:58.929 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -21:04:58.929 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@29dd0141[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -21:04:58.929 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726491894812_39.144.43.42_63067 -21:04:58.932 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@271d2277[Running, pool size = 9, active threads = 0, queued tasks = 0, completed tasks = 9] -21:04:58.932 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->d4a32068-ad4f-4d55-90f3-a54a4ec907fd -21:04:58.932 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -21:04:58.932 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -21:04:58.933 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -21:04:58.940 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -21:04:58.942 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -21:04:58.946 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -21:04:58.946 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -21:04:58.946 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +19:18:10.066 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +19:18:12.896 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9701"] +19:18:12.898 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +19:18:12.899 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +19:18:12.977 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +19:18:14.350 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +19:18:14.351 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +19:18:14.352 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +19:18:17.807 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +19:18:19.462 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. +19:18:20.916 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@6eb1a122[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] +19:18:20.916 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4c669afb[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] +19:18:20.916 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@15dba9f9[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] +19:18:20.957 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. +19:18:21.066 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9701"] +19:18:21.094 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10000 +19:18:21.184 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +19:18:21.185 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +19:18:21.185 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +19:18:21.189 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +19:18:21.192 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +19:18:21.192 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +19:18:21.290 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 90501778-e912-4067-874f-fb18381457e9 +19:18:21.293 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->90501778-e912-4067-874f-fb18381457e9 +19:18:21.293 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +19:18:21.293 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +19:18:21.294 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +19:18:21.294 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} +19:18:21.295 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +19:18:21.356 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726485502702_117.143.60.138_52444 +19:18:21.357 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +19:18:21.357 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] Notify connected event to listeners. +19:18:21.357 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000019f814696d0 +19:18:21.357 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +19:18:21.358 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.82', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +19:18:21.379 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.82:9701 register finished +19:18:21.601 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 14.657 seconds (process running for 15.512) +19:18:21.610 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +19:18:21.610 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +19:18:21.610 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one +19:18:21.617 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 +19:18:21.617 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP +19:18:21.618 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one +19:18:21.619 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 +19:18:21.619 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP +19:18:21.619 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one +19:18:21.619 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 +19:18:21.619 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP +19:18:39.076 [http-nio-9701-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +20:10:53.895 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. +20:10:53.906 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.136.1:10000/'}, registryResult:ReturnT [code=200, msg=null, content=null] +20:10:53.906 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. +20:10:53.906 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. +20:10:53.907 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. +20:10:53.907 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. +20:10:53.907 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. +20:10:53.908 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:10:53.908 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.82', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:10:53.923 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:10:53.925 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:10:53.925 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:10:53.925 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:10:53.925 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:10:53.925 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:10:53.925 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->90501778-e912-4067-874f-fb18381457e9 +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@71f9fc79[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1048] +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:10:53.926 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3d52f523[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:10:53.927 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726485502702_117.143.60.138_52444 +20:10:53.933 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@78d8e53c[Running, pool size = 5, active threads = 1, queued tasks = 0, completed tasks = 637] +20:10:53.933 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [90501778-e912-4067-874f-fb18381457e9] Server healthy check fail, currentConnection = 1726485502702_117.143.60.138_52444 +20:10:53.933 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->90501778-e912-4067-874f-fb18381457e9 +20:10:53.934 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:10:53.934 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:10:53.934 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +20:10:53.947 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +20:10:53.950 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +20:10:53.955 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +20:10:53.955 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +20:10:53.955 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye diff --git a/logs/cloud-system/info.log b/logs/cloud-system/info.log index 5f04cc5..35a941d 100644 --- a/logs/cloud-system/info.log +++ b/logs/cloud-system/info.log @@ -1,386 +1,303 @@ -14:55:01.987 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:55:04.119 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:55:04.120 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:55:04.173 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:55:07.113 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -14:55:07.114 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -14:55:07.114 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -14:55:10.807 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:55:11.969 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -14:55:12.851 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@171f9f2c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -14:55:12.852 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@745955ba[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -14:55:12.852 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@9ef7fd8[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -14:55:12.880 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -14:55:12.880 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -14:55:12.937 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -14:55:13.058 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -14:55:13.059 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -14:55:13.060 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -14:55:13.063 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -14:55:13.066 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -14:55:13.066 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -14:55:13.192 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9e4cbc0e-5cc6-4b44-bd4e-093843270882 -14:55:13.193 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->9e4cbc0e-5cc6-4b44-bd4e-093843270882 -14:55:13.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9e4cbc0e-5cc6-4b44-bd4e-093843270882] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:55:13.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9e4cbc0e-5cc6-4b44-bd4e-093843270882] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:55:13.194 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9e4cbc0e-5cc6-4b44-bd4e-093843270882] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:55:13.195 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9e4cbc0e-5cc6-4b44-bd4e-093843270882] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -14:55:13.195 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:55:13.430 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9e4cbc0e-5cc6-4b44-bd4e-093843270882] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556115353_117.136.120.204_26268 -14:55:13.431 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9e4cbc0e-5cc6-4b44-bd4e-093843270882] Notify connected event to listeners. -14:55:13.431 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9e4cbc0e-5cc6-4b44-bd4e-093843270882] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:55:13.431 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -14:55:13.431 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9e4cbc0e-5cc6-4b44-bd4e-093843270882] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801138678 -14:55:13.432 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -14:55:13.467 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.245.139:9701 register finished -14:55:13.628 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 14.833 seconds (process running for 15.379) -14:55:13.636 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -14:55:13.636 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -14:55:13.637 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -14:55:13.642 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -14:55:13.642 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -14:55:13.643 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -14:55:13.643 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -14:55:13.644 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -14:55:13.644 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -14:55:13.644 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -14:55:13.644 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -14:55:13.891 [RMI TCP Connection(4)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:06:18.417 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -15:06:18.473 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -15:06:18.473 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -15:06:18.473 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -15:06:18.474 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -15:06:18.474 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -15:06:18.474 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -15:06:18.474 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:06:18.475 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:06:18.522 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:06:18.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:06:18.524 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->9e4cbc0e-5cc6-4b44-bd4e-093843270882 -15:06:18.524 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2ec581e4[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 221] -15:06:18.524 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:06:18.524 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7ebda9f2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:06:18.524 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556115353_117.136.120.204_26268 -15:06:18.527 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7da64b19[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 140] -15:06:18.527 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->9e4cbc0e-5cc6-4b44-bd4e-093843270882 -15:06:18.527 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:06:18.527 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:06:18.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:06:18.538 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -15:06:18.539 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -15:06:18.543 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -15:06:18.543 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -15:06:18.543 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -15:08:24.871 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:08:27.280 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:08:27.280 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:08:27.373 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:08:31.392 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -15:08:31.393 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -15:08:31.393 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:08:34.753 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:08:36.095 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -15:08:37.211 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@15a7fda8[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -15:08:37.211 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3e1d79ad[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -15:08:37.211 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@36fe4eb0[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -15:08:37.236 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -15:08:37.236 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -15:08:37.296 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -15:08:37.424 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:08:37.424 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:08:37.424 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:08:37.427 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:08:37.429 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:08:37.430 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:08:37.592 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c34864f0-9e1d-49ac-8796-cde548d5a882 -15:08:37.593 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->c34864f0-9e1d-49ac-8796-cde548d5a882 -15:08:37.594 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c34864f0-9e1d-49ac-8796-cde548d5a882] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:08:37.594 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c34864f0-9e1d-49ac-8796-cde548d5a882] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:08:37.595 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c34864f0-9e1d-49ac-8796-cde548d5a882] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:08:37.595 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c34864f0-9e1d-49ac-8796-cde548d5a882] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:08:37.595 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:08:37.949 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c34864f0-9e1d-49ac-8796-cde548d5a882] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556919758_117.136.120.204_26281 -15:08:37.949 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c34864f0-9e1d-49ac-8796-cde548d5a882] Notify connected event to listeners. -15:08:37.949 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c34864f0-9e1d-49ac-8796-cde548d5a882] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:37.950 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:08:37.950 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c34864f0-9e1d-49ac-8796-cde548d5a882] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801135c28 -15:08:37.951 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:08:38.049 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.245.139:9701 register finished -15:08:38.224 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 16.507 seconds (process running for 17.1) -15:08:38.233 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:08:38.234 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:08:38.234 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -15:08:38.241 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -15:08:38.241 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -15:08:38.242 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -15:08:38.243 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:08:38.243 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -15:08:38.243 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -15:08:38.243 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -15:08:38.243 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -15:08:38.657 [RMI TCP Connection(2)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:32:43.513 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -15:32:43.585 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -15:32:43.585 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -15:32:43.586 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -15:32:43.586 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -15:32:43.586 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -15:32:43.586 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -15:32:43.587 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:32:43.587 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:32:43.644 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:32:43.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:32:43.645 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c34864f0-9e1d-49ac-8796-cde548d5a882 -15:32:43.646 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@104aff[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 480] -15:32:43.647 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:32:43.647 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6b249065[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:32:43.647 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556919758_117.136.120.204_26281 -15:32:43.649 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3a62ba83[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 290] -15:32:43.649 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c34864f0-9e1d-49ac-8796-cde548d5a882 -15:32:43.649 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:32:43.650 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:32:43.650 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:32:43.658 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -15:32:43.659 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -15:32:43.663 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -15:32:43.663 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -15:32:43.663 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -15:33:00.470 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:33:03.499 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:33:03.499 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:33:03.579 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:33:06.604 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -15:33:06.606 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -15:33:06.606 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:33:11.075 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:33:12.706 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -15:33:14.041 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7b362c16[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -15:33:14.041 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3f79660e[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -15:33:14.041 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@23c9da95[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -15:33:14.071 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -15:33:14.071 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -15:33:14.156 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -15:33:14.359 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:33:14.359 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:33:14.360 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:33:14.366 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:33:14.371 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:33:14.372 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:33:14.499 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 20b39f29-2076-46c3-a3ee-fc93ea40de82 -15:33:14.501 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->20b39f29-2076-46c3-a3ee-fc93ea40de82 -15:33:14.501 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [20b39f29-2076-46c3-a3ee-fc93ea40de82] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:33:14.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [20b39f29-2076-46c3-a3ee-fc93ea40de82] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:33:14.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [20b39f29-2076-46c3-a3ee-fc93ea40de82] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:33:14.502 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [20b39f29-2076-46c3-a3ee-fc93ea40de82] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:33:14.503 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:33:14.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [20b39f29-2076-46c3-a3ee-fc93ea40de82] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558396667_117.136.120.204_26609 -15:33:14.690 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [20b39f29-2076-46c3-a3ee-fc93ea40de82] Notify connected event to listeners. -15:33:14.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [20b39f29-2076-46c3-a3ee-fc93ea40de82] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:33:14.690 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:33:14.690 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [20b39f29-2076-46c3-a3ee-fc93ea40de82] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801138d88 -15:33:14.691 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:33:14.732 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.245.139:9701 register finished -15:33:14.937 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 17.94 seconds (process running for 18.566) -15:33:14.948 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:33:14.948 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:33:14.949 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -15:33:14.955 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -15:33:14.955 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -15:33:14.956 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -15:33:14.957 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:33:14.957 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -15:33:14.957 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -15:33:14.957 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -15:33:14.957 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -15:33:15.431 [RMI TCP Connection(5)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:38:03.992 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -15:38:04.047 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -15:38:04.047 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -15:38:04.048 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -15:38:04.049 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -15:38:04.049 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -15:38:04.049 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -15:38:04.050 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:38:04.050 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:38:04.086 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:38:04.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:38:04.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->20b39f29-2076-46c3-a3ee-fc93ea40de82 -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@52ea7cbc[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 96] -15:38:04.088 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:38:04.089 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@bcd1464[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:38:04.089 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558396667_117.136.120.204_26609 -15:38:04.091 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5226a98c[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 70] -15:38:04.092 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->20b39f29-2076-46c3-a3ee-fc93ea40de82 -15:38:04.092 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:38:04.092 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:38:04.092 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:38:04.102 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -15:38:04.104 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -15:38:04.107 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -15:38:04.107 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -15:38:04.107 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -15:42:13.877 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:42:15.856 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:42:15.856 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:42:15.909 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:42:18.852 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -15:42:18.853 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -15:42:18.853 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:42:21.952 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:42:23.263 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -15:42:24.207 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@6e28a726[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -15:42:24.207 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3777e395[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -15:42:24.208 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@7d59e8d4[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -15:42:24.325 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -15:42:24.443 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:42:24.443 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:42:24.444 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:42:24.447 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:42:24.450 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:42:24.450 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:42:24.576 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a8532469-acb5-47ac-b1d1-fa09b7e5d0b9 -15:42:24.578 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a8532469-acb5-47ac-b1d1-fa09b7e5d0b9 -15:42:24.578 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a8532469-acb5-47ac-b1d1-fa09b7e5d0b9] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:42:24.578 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a8532469-acb5-47ac-b1d1-fa09b7e5d0b9] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:42:24.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a8532469-acb5-47ac-b1d1-fa09b7e5d0b9] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:42:24.579 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a8532469-acb5-47ac-b1d1-fa09b7e5d0b9] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:42:24.580 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:42:24.714 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a8532469-acb5-47ac-b1d1-fa09b7e5d0b9] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558946711_117.136.120.204_26631 -15:42:24.715 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a8532469-acb5-47ac-b1d1-fa09b7e5d0b9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:24.715 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a8532469-acb5-47ac-b1d1-fa09b7e5d0b9] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801137060 -15:42:24.717 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:42:24.715 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a8532469-acb5-47ac-b1d1-fa09b7e5d0b9] Notify connected event to listeners. -15:42:24.724 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:42:24.778 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.245.139:9701 register finished -15:42:24.933 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 13.751 seconds (process running for 14.241) -15:42:24.940 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:42:24.940 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:42:24.940 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -15:42:24.945 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -15:42:24.945 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -15:42:24.946 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -15:42:24.946 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:42:24.946 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -15:42:24.946 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -15:42:24.947 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -15:42:24.947 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -15:42:25.226 [RMI TCP Connection(18)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:51:37.461 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -15:51:37.533 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -15:51:37.533 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -15:51:37.533 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -15:51:37.533 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -15:51:37.533 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -15:51:37.533 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -15:51:37.534 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:51:37.534 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:51:37.604 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a8532469-acb5-47ac-b1d1-fa09b7e5d0b9 -15:51:37.605 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1056183[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 183] -15:51:37.606 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:51:37.606 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@28ae5f48[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:51:37.606 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558946711_117.136.120.204_26631 -15:51:37.608 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4ee5a69d[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 124] -15:51:37.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a8532469-acb5-47ac-b1d1-fa09b7e5d0b9 -15:51:37.608 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:51:37.608 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:51:37.608 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:51:37.619 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -15:51:37.621 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -15:51:37.625 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -15:51:37.625 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -15:51:37.625 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -15:51:52.900 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:51:55.816 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:51:55.817 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:51:55.918 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:51:58.995 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -15:51:58.997 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -15:51:58.997 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -15:52:03.519 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:52:05.149 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -15:52:06.218 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@23c9da95[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -15:52:06.218 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@12882698[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -15:52:06.218 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5814fe43[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -15:52:06.246 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -15:52:06.247 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -15:52:06.345 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -15:52:06.486 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:52:06.486 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:52:06.487 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:52:06.491 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:52:06.495 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:52:06.495 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:52:06.637 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 5d6efe60-f3b2-43b6-8a04-9f2ba1a61274 -15:52:06.639 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->5d6efe60-f3b2-43b6-8a04-9f2ba1a61274 -15:52:06.639 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:52:06.639 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:52:06.640 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:52:06.640 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:52:06.640 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:52:06.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726559528816_117.136.120.204_26647 -15:52:06.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:52:06.827 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x00000008011414f8 -15:52:06.827 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Notify connected event to listeners. -15:52:06.827 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:52:06.828 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:52:06.880 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.245.139:9701 register finished -15:52:07.060 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 17.703 seconds (process running for 18.264) -15:52:07.069 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:52:07.069 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:52:07.069 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -15:52:07.074 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -15:52:07.075 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -15:52:07.076 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -15:52:07.076 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:52:07.076 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -15:52:07.076 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -15:52:07.076 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -15:52:07.076 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -15:52:07.378 [RMI TCP Connection(5)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:12:10.684 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.CommandHandler - [log,217] - null Unexpected exception during request: java.net.SocketException: Connection reset +08:15:24.983 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +08:15:28.361 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"] +08:15:28.363 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +08:15:28.364 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +08:15:28.492 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +08:15:30.597 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +08:15:30.598 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +08:15:30.598 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +08:15:33.695 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +08:15:36.609 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"] +08:15:36.718 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +08:15:36.719 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +08:15:36.719 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +08:15:36.723 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +08:15:36.727 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +08:15:36.727 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +08:15:36.856 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 23e366a8-1635-4ce8-8a74-504fb5cdff37 +08:15:36.857 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->23e366a8-1635-4ce8-8a74-504fb5cdff37 +08:15:36.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +08:15:36.857 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +08:15:36.858 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +08:15:36.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +08:15:36.859 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:15:37.092 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050537381_117.143.60.138_64091 +08:15:37.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +08:15:37.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners. +08:15:37.093 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001ecb042fde0 +08:15:37.093 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +08:15:37.094 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +08:15:37.110 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished +08:15:37.220 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 15.421 seconds (process running for 16.051) +08:15:37.226 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +08:15:37.227 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +08:15:37.227 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP +08:15:37.232 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 +08:15:37.233 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP +08:15:37.233 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP +08:15:37.233 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 +08:15:37.234 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP +08:15:37.234 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP +08:15:37.234 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 +08:15:37.234 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP +08:15:48.308 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +08:58:48.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848 +09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727050524678_117.143.60.138_64068 +09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:55.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:58.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:01.902 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:02.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:05.115 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:05.426 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:08.445 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:08.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053270513_117.143.60.138_58112 +09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050524678_117.143.60.138_64068 +09:01:11.717 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050524678_117.143.60.138_64068 +09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners +09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context... +09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners. +09:01:11.718 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context... +09:01:13.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:01:13.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:16.147 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:19.155 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:19.356 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727050537381_117.143.60.138_64091 +09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:01:20.623 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:22.368 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:22.677 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053281398_117.143.60.138_58172 +09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050537381_117.143.60.138_64091 +09:01:23.226 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050537381_117.143.60.138_64091 +09:01:23.226 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners +09:01:23.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners. +09:01:23.227 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:01:25.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:26.095 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:26.126 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system +09:01:29.107 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:29.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053290263_117.143.60.138_58205 +09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053270513_117.143.60.138_58112 +09:01:30.477 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053270513_117.143.60.138_58112 +09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners +09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context... +09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners. +09:01:30.477 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context... +09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053290263_117.143.60.138_58205 +09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:15.146 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:18.260 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:21.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:21.475 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:24.489 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:24.801 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053345448_117.143.60.138_58461 +09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053290263_117.143.60.138_58205 +09:02:25.759 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053290263_117.143.60.138_58205 +09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners +09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context... +09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners. +09:02:25.759 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context... +09:02:34.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848 +09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053281398_117.143.60.138_58172 +09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:51.937 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053372715_117.143.60.138_58558 +09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053281398_117.143.60.138_58172 +09:02:52.691 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053281398_117.143.60.138_58172 +09:02:52.691 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners +09:02:52.692 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners. +09:02:52.692 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:02:53.528 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system +09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053345448_117.143.60.138_58461 +09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:03:27.934 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053408640_117.143.60.138_51315 +09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053345448_117.143.60.138_58461 +09:03:28.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053345448_117.143.60.138_58461 +09:03:28.904 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners +09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context... +09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners. +09:03:28.905 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context... +09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053372715_117.143.60.138_58558 +09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:04:33.528 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:36.641 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:37.854 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Receive server push request, request = ClientDetectionRequest, requestId = 3581 +09:04:37.854 [nacos-grpc-client-executor-110.42.213.184-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Ack server push request, request = ClientDetectionRequest, requestId = 3581 +09:04:38.305 [nacos-grpc-client-executor-110.42.213.184-600] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1727053372715_117.143.60.138_58558]Ignore complete event,isRunning:false,isAbandon=false +09:04:39.657 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:39.872 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053480522_117.143.60.138_51512 +09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053372715_117.143.60.138_58558 +09:04:40.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053372715_117.143.60.138_58558 +09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners +09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners. +09:04:40.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:04:41.426 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:04:41.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:42.329 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system +09:04:44.443 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:47.457 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:47.458 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053489394_117.143.60.138_51569 +09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053480522_117.143.60.138_51512 +09:04:49.221 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053480522_117.143.60.138_51512 +09:04:49.221 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners +09:04:49.222 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners. +09:04:49.222 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:04:50.218 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system +09:05:12.871 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848 +09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server healthy check fail, currentConnection = 1727053408640_117.143.60.138_51315 +09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:05:34.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053535444_117.143.60.138_49284 +09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053408640_117.143.60.138_51315 +09:05:36.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053408640_117.143.60.138_51315 +09:05:36.843 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify disconnected event to listeners +09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] DisConnected,clear listen context... +09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Notify connected event to listeners. +09:05:36.844 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Connected,notify listen context... +09:05:49.648 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:05:51.368 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b1b82772-64f8-4980-86bb-014d95aa2dcb_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server healthy check fail, currentConnection = 1727053489394_117.143.60.138_51569 +09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:07:44.011 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:07:47.139 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Success to connect a server [110.42.213.184:8848], connectionId = 1727053668847_117.143.60.138_64282 +09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053489394_117.143.60.138_51569 +09:07:49.664 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053489394_117.143.60.138_51569 +09:07:49.664 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify disconnected event to listeners +09:07:49.665 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Notify connected event to listeners. +09:07:49.665 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:07:50.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848 +09:07:51.249 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system +09:07:56.096 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [23e366a8-1635-4ce8-8a74-504fb5cdff37] Server check success, currentServer is 110.42.213.184:8848 +09:07:57.264 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system +09:10:11.344 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +09:10:11.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +09:10:11.471 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +09:10:11.472 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +09:10:11.473 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->23e366a8-1635-4ce8-8a74-504fb5cdff37 +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1e6410b[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1086] +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@663c7423[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053668847_117.143.60.138_64282 +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@768aeb91[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 704] +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->23e366a8-1635-4ce8-8a74-504fb5cdff37 +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +09:10:11.474 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +09:10:11.486 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +09:10:11.488 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +09:10:11.492 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +09:10:11.492 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +09:10:11.492 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye +09:11:05.868 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +09:11:08.781 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9707"] +09:11:08.783 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +09:11:08.783 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +09:11:08.869 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +09:11:26.112 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited +09:11:26.114 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success +09:11:26.114 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] +09:11:32.348 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +09:11:35.487 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9707"] +09:11:35.607 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +09:11:35.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +09:11:35.607 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +09:11:35.612 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +09:11:35.617 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:11:35.617 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:11:35.813 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 721d7967-ec5a-4219-ac11-78782e7a3940 +09:11:35.815 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->721d7967-ec5a-4219-ac11-78782e7a3940 +09:11:35.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +09:11:35.815 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +09:11:35.816 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +09:11:35.817 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:11:35.817 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053896451_117.143.60.138_55969 +09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:11:36.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Notify connected event to listeners. +09:11:36.248 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$576/0x000001b1bd441470 +09:11:36.248 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:11:36.249 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +09:11:36.351 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.107:9707 register finished +09:11:36.484 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 37.333 seconds (process running for 37.897) +09:11:36.493 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +09:11:36.494 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +09:11:36.495 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system+DEFAULT_GROUP +09:11:36.502 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 +09:11:36.503 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP +09:11:36.504 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP +09:11:36.504 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 +09:11:36.504 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP +09:11:36.504 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP +09:11:36.504 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 +09:11:36.504 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP +09:12:04.292 [http-nio-9707-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:56:12.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:57:25.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727053863838_117.143.60.138_55892 +09:57:25.924 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:57:25.925 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056646782_117.143.60.138_55371 +09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053863838_117.143.60.138_55892 +09:57:26.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053863838_117.143.60.138_55892 +09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners +09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context... +09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners. +09:57:26.590 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context... +09:59:18.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727056646782_117.143.60.138_55371 +09:59:18.307 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:59:18.308 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:59:21.422 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:59:24.427 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:59:24.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056765429_117.143.60.138_55557 +09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056646782_117.143.60.138_55371 +09:59:27.565 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056646782_117.143.60.138_55371 +09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners +09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context... +09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners. +09:59:27.566 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context... +09:59:29.334 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server check success, currentServer is 110.42.213.184:8848 +10:01:40.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Server check success, currentServer is 110.42.213.184:8848 +10:02:00.144 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [721d7967-ec5a-4219-ac11-78782e7a3940] Server check success, currentServer is 110.42.213.184:8848 +10:02:24.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +10:02:24.975 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056945861_117.143.60.138_56043 +10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056765429_117.143.60.138_55557 +10:02:25.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056765429_117.143.60.138_55557 +10:02:25.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners +10:02:25.892 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context... +10:02:25.893 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners. +10:02:25.893 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context... +10:04:21.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Server healthy check fail, currentConnection = 1727056945861_117.143.60.138_56043 +10:04:21.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +10:04:21.487 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:04:24.608 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727057065384_117.143.60.138_56325 +10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056945861_117.143.60.138_56043 +10:04:25.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056945861_117.143.60.138_56043 +10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify disconnected event to listeners +10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] DisConnected,clear listen context... +10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Notify connected event to listeners. +10:04:25.168 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [99719be5-a0ee-4ff7-89d3-e70f6b39508f_config-0] Connected,notify listen context... +10:09:03.568 [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) @@ -395,1525 +312,35 @@ java.net.SocketException: Connection reset 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:833) -16:12:10.684 [lettuce-nioEventLoop-4-2] 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:833) -16:12:10.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.791 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.818 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.838 [lettuce-eventExecutorLoop-1-2] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:12:10.838 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:12:11.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.025 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.291 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.291 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.837 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.233 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.233 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.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.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.250 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.750 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.766 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.766 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.766 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.381 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.522 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.611 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.100 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.547 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.802 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.046 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.694 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.099 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.272 [lettuce-eventExecutorLoop-1-3] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:16.600 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:17.166 [lettuce-eventExecutorLoop-1-4] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:17.335 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.971 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:18.209 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.356 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:18.411 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.512 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.555 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.760 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.758 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.962 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.994 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:21.178 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.312 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.543 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.760 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:23.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:24.174 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:24.237 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:24.416 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:25.762 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:26.004 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:26.160 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.615 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.851 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:28.013 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.168 [lettuce-eventExecutorLoop-1-7] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:29.567 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.719 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.815 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.948 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:30.070 [lettuce-eventExecutorLoop-1-8] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:31.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.669 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753726_117.143.60.138_58347 -16:12:31.669 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559514056_117.136.120.204_26640 -16:12:31.669 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559514056_117.136.120.204_26640 -16:12:31.669 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Notify disconnected event to listeners -16:12:31.669 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] DisConnected,clear listen context... -16:12:31.669 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Notify connected event to listeners. -16:12:31.669 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Connected,notify listen context... -16:12:31.753 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Success to connect a server [47.116.173.119:8848], connectionId = 1726560754016_117.143.60.138_58351 -16:12:31.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559528816_117.136.120.204_26647 -16:12:31.938 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559528816_117.136.120.204_26647 -16:12:31.938 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Notify disconnected event to listeners -16:12:31.943 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Notify connected event to listeners. -16:12:31.943 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:12:33.943 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system -16:12:45.865 [lettuce-eventExecutorLoop-1-9] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:45.919 [lettuce-nioEventLoop-4-11] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:12:46.766 [lettuce-eventExecutorLoop-1-10] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was 47.116.173.119/:6379 -16:12:46.801 [lettuce-nioEventLoop-4-12] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:39.397 [lettuce-nioEventLoop-4-12] 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:833) -16:28:39.398 [lettuce-nioEventLoop-4-11] 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:833) -16:28:39.413 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Server healthy check fail, currentConnection = 1726560754016_117.143.60.138_58351 -16:28:39.414 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.414 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.414 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Server healthy check fail, currentConnection = 1726560753726_117.143.60.138_58347 -16:28:39.414 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.415 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.466 [lettuce-eventExecutorLoop-1-19] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:28:39.466 [lettuce-eventExecutorLoop-1-20] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 -16:28:39.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.752 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.752 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:40.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.209 [lettuce-nioEventLoop-4-1] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:40.222 [lettuce-nioEventLoop-4-2] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 -16:28:40.330 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722291_117.136.120.204_26976 -16:28:40.330 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753726_117.143.60.138_58347 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753726_117.143.60.138_58347 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Notify disconnected event to listeners -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] DisConnected,clear listen context... -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Notify connected event to listeners. -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Connected,notify listen context... -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722291_117.136.120.204_26979 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560754016_117.143.60.138_58351 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560754016_117.143.60.138_58351 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Notify disconnected event to listeners -16:28:40.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Notify connected event to listeners. -16:28:40.347 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:28:40.633 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722531_117.136.120.204_26984 -16:28:40.633 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726561722291_117.136.120.204_26979 -16:28:40.633 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722291_117.136.120.204_26979 -16:28:40.634 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Notify disconnected event to listeners -16:28:40.634 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5d6efe60-f3b2-43b6-8a04-9f2ba1a61274] Notify connected event to listeners. -16:28:40.634 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:28:40.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722531_117.136.120.204_26982 -16:28:40.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726561722291_117.136.120.204_26976 -16:28:40.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722291_117.136.120.204_26976 -16:28:40.821 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Notify disconnected event to listeners -16:28:40.821 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] DisConnected,clear listen context... -16:28:40.821 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Notify connected event to listeners. -16:28:40.821 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [956baf9f-4c18-42c9-9117-61260d6a5609_config-0] Connected,notify listen context... -16:28:42.519 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system -16:49:32.553 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:49:34.263 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:49:34.264 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:49:34.320 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:49:37.096 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -16:49:37.097 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -16:49:37.097 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -16:49:37.180 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -16:49:37.182 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -16:49:37.186 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -16:49:37.187 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -16:49:37.187 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -16:49:37.188 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:49:41.824 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -16:49:41.857 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -16:49:41.857 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -16:49:41.858 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -16:49:41.858 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -16:49:41.858 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -16:49:41.858 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -16:49:41.859 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:49:41.859 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:49:41.969 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:49:41.970 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:49:41.970 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:49:41.970 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:49:41.970 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:49:41.970 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:49:41.970 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->5d6efe60-f3b2-43b6-8a04-9f2ba1a61274 -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@28bfd9c8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1148] -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6c049c59[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722531_117.136.120.204_26984 -16:49:41.971 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@e404705[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 784] -16:49:41.972 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->5d6efe60-f3b2-43b6-8a04-9f2ba1a61274 -16:49:41.972 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:49:41.972 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:49:41.972 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:49:41.981 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -16:49:41.986 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -16:49:41.988 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -16:49:41.988 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -16:49:41.988 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -16:49:48.910 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:49:51.472 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:49:51.473 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:49:51.560 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:49:54.511 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -16:49:54.512 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -16:49:54.513 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -16:49:54.641 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -16:49:54.643 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -16:49:54.652 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -16:49:54.652 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -16:49:54.652 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -16:49:54.654 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:50:02.407 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:50:05.318 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:50:05.318 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:50:05.399 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:50:08.513 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -16:50:08.514 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -16:50:08.515 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -16:50:13.384 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:50:14.929 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -16:50:16.149 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3ff00c4c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -16:50:16.150 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@152f96e5[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -16:50:16.150 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2168ed92[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -16:50:16.277 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -16:50:16.412 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:50:16.412 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:50:16.413 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:50:16.416 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:50:16.419 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -16:50:16.420 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -16:50:16.551 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of f0e0512b-3722-406e-a88a-33677e662def -16:50:16.553 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->f0e0512b-3722-406e-a88a-33677e662def -16:50:16.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f0e0512b-3722-406e-a88a-33677e662def] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:50:16.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f0e0512b-3722-406e-a88a-33677e662def] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:50:16.553 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f0e0512b-3722-406e-a88a-33677e662def] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:50:16.554 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f0e0512b-3722-406e-a88a-33677e662def] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:50:16.554 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:50:16.756 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f0e0512b-3722-406e-a88a-33677e662def] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563018757_117.136.120.204_27008 -16:50:16.757 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f0e0512b-3722-406e-a88a-33677e662def] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:50:16.757 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f0e0512b-3722-406e-a88a-33677e662def] Notify connected event to listeners. -16:50:16.757 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [f0e0512b-3722-406e-a88a-33677e662def] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801138440 -16:50:16.757 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:50:16.758 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:50:16.834 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.245.139:9701 register finished -16:50:17.008 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 17.886 seconds (process running for 18.458) -16:50:17.017 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:50:17.017 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:50:17.017 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -16:50:17.024 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -16:50:17.024 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -16:50:17.025 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -16:50:17.025 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:50:17.025 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -16:50:17.026 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -16:50:17.026 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -16:50:17.026 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -16:50:17.470 [RMI TCP Connection(7)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:53:24.755 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -16:53:24.829 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -16:53:24.829 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -16:53:24.829 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -16:53:24.829 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -16:53:24.829 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -16:53:24.829 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -16:53:24.829 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:53:24.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->f0e0512b-3722-406e-a88a-33677e662def -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@318c0711[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 62] -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@26211dac[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:53:24.861 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563018757_117.136.120.204_27008 -16:53:24.876 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4f5bfcc7[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 45] -16:53:24.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->f0e0512b-3722-406e-a88a-33677e662def -16:53:24.876 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:53:24.876 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:53:24.876 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:53:24.892 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -16:53:24.892 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -16:53:24.892 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -16:53:24.892 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -16:53:24.892 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -16:53:31.760 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:53:34.291 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:53:34.291 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:53:34.383 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:53:37.388 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -16:53:37.389 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -16:53:37.389 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -16:53:37.527 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -16:53:37.529 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -16:53:37.539 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -16:53:37.539 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -16:53:37.539 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -16:53:37.541 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -16:53:40.327 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:53:43.054 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:53:43.055 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:53:43.144 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:53:46.462 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -16:53:46.462 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -16:53:46.463 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -16:53:51.342 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:53:53.232 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -16:53:55.172 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@514abad9[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -16:53:55.173 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@53b97a9[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -16:53:55.173 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3c2ed946[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -16:53:55.363 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -16:53:55.532 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:53:55.534 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:53:55.534 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:53:55.540 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:53:55.542 [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:55.544 [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:55.793 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2 -16:53:55.794 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2 -16:53:55.795 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:53:55.795 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:53:55.795 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:53:55.796 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:53:55.796 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:53:55.986 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563237992_117.136.120.204_27020 -16:53:55.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:53:55.987 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2] Notify connected event to listeners. -16:53:55.987 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x00000008011390a0 -16:53:55.987 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:53:55.989 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:53:56.029 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.245.139:9701 register finished -16:53:56.293 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 19.478 seconds (process running for 19.974) -16:53:56.303 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:53:56.303 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:53:56.303 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -16:53:56.311 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -16:53:56.312 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -16:53:56.313 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -16:53:56.314 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:53:56.314 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -16:53:56.314 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -16:53:56.314 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -16:53:56.314 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -16:53:56.502 [RMI TCP Connection(5)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:59:19.655 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:59:21.372 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:59:21.373 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:59:21.430 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:59:21.968 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -16:59:21.970 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:26:59.720 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:27:01.414 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:27:01.415 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:27:01.470 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:27:02.001 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -17:27:02.003 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:31:56.386 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:31:58.163 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:31:58.163 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:31:58.220 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:32:01.538 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -17:32:01.539 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -17:32:01.539 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -17:32:01.625 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -17:32:01.626 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -17:32:01.631 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -17:32:01.631 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -17:32:01.631 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -17:32:01.632 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:38:44.735 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:38:46.441 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:38:46.442 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:38:46.498 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:38:49.728 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -17:38:49.729 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -17:38:49.730 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -17:38:49.821 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -17:38:49.823 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -17:38:49.827 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -17:38:49.827 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -17:38:49.828 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -17:38:49.828 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:40:03.740 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:40:05.526 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:40:05.526 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:40:05.584 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:40:09.269 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -17:40:09.270 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -17:40:09.270 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -17:40:09.352 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -17:40:09.353 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -17:40:09.358 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -17:40:09.358 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -17:40:09.358 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -17:40:09.359 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:43:04.041 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:43:05.884 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:43:05.885 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:43:05.944 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:43:09.176 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -17:43:09.177 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -17:43:09.177 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -17:43:09.264 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -17:43:09.266 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -17:43:09.282 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -17:43:09.282 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -17:43:09.282 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -17:43:09.283 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:50:59.419 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -17:50:59.494 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=200, msg=null, content=null] -17:50:59.494 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -17:50:59.495 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -17:50:59.495 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -17:50:59.495 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -17:50:59.495 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -17:50:59.496 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:50:59.496 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:50:59.527 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:50:59.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2 -17:50:59.529 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@677efb6f[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1138] -17:50:59.529 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:50:59.529 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@27c3f28a[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:50:59.529 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563237992_117.136.120.204_27020 -17:50:59.531 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7f3359e7[Running, pool size = 2, active threads = 0, queued tasks = 0, completed tasks = 675] -17:50:59.531 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->ced48aa5-9ef0-454c-b2cc-7597d8f3dbf2 -17:50:59.532 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:50:59.532 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:50:59.532 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:50:59.541 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -17:50:59.542 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -17:50:59.544 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -17:50:59.545 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -17:50:59.545 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -17:51:06.730 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:51:09.412 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:51:09.413 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:51:09.486 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:51:12.757 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -17:51:12.759 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -17:51:12.759 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -17:51:12.905 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -17:51:12.908 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -17:51:12.916 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -17:51:12.916 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -17:51:12.916 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -17:51:12.917 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -17:51:15.180 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:51:18.044 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:51:18.045 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:51:18.139 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:51:21.516 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -17:51:21.518 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -17:51:21.518 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -17:51:26.182 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:51:28.036 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -17:51:29.697 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@53b97a9[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -17:51:29.698 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3c2ed946[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -17:51:29.698 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@6a3044cb[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -17:51:29.964 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -17:51:30.269 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -17:51:30.269 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -17:51:30.270 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -17:51:30.277 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -17:51:30.282 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -17:51:30.282 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -17:51:30.421 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 64beb5fa-918e-48e1-b6db-87be20948e85 -17:51:30.424 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->64beb5fa-918e-48e1-b6db-87be20948e85 -17:51:30.425 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64beb5fa-918e-48e1-b6db-87be20948e85] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:51:30.425 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64beb5fa-918e-48e1-b6db-87be20948e85] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:51:30.426 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64beb5fa-918e-48e1-b6db-87be20948e85] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:51:30.426 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64beb5fa-918e-48e1-b6db-87be20948e85] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -17:51:30.427 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -17:51:30.632 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64beb5fa-918e-48e1-b6db-87be20948e85] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726566692657_117.136.120.204_27371 -17:51:30.633 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64beb5fa-918e-48e1-b6db-87be20948e85] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:51:30.633 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64beb5fa-918e-48e1-b6db-87be20948e85] Notify connected event to listeners. -17:51:30.633 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [64beb5fa-918e-48e1-b6db-87be20948e85] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801135e20 -17:51:30.633 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -17:51:30.635 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -17:51:30.716 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 192.168.245.139:9701 register finished -17:51:30.988 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 19.05 seconds (process running for 19.715) -17:51:31.001 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -17:51:31.001 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -17:51:31.002 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -17:51:31.010 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -17:51:31.011 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -17:51:31.012 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -17:51:31.012 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -17:51:31.012 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -17:51:31.013 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -17:51:31.013 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -17:51:31.013 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -17:51:31.493 [RMI TCP Connection(1)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:56:03.572 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:57:06.748 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:58:09.959 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:58:43.080 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -17:58:43.131 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -17:58:46.160 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://192.168.245.139:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -17:58:46.160 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -17:58:46.161 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -17:58:46.161 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -17:58:46.161 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -17:58:46.161 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -17:58:46.162 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:58:46.162 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='192.168.245.139', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:58:46.208 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:58:46.209 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:58:46.209 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->64beb5fa-918e-48e1-b6db-87be20948e85 -17:58:46.210 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5aafd087[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 144] -17:58:46.211 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:58:46.211 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@364d3e8e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:58:46.211 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726566692657_117.136.120.204_27371 -17:58:46.213 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@48ed851f[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 98] -17:58:46.213 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->64beb5fa-918e-48e1-b6db-87be20948e85 -17:58:46.213 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:58:46.214 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:58:46.214 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:58:46.233 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -17:58:46.235 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -17:58:46.238 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -17:58:46.238 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -17:58:46.238 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -18:47:00.651 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -18:47:04.299 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:47:04.301 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -18:47:04.378 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:47:05.609 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -18:47:07.958 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:47:07.959 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -18:47:08.023 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:47:10.954 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -18:47:10.956 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -18:47:10.956 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -18:47:16.227 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -18:47:17.743 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -18:47:17.743 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -18:47:17.743 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -18:47:17.837 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -18:47:17.913 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -18:47:17.913 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -18:47:17.925 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -18:47:17.925 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -18:47:17.925 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -18:47:17.926 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -18:47:19.700 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@171f9f2c[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -18:47:19.700 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@745955ba[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -18:47:19.700 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@9ef7fd8[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -18:47:19.751 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -18:47:19.751 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -18:47:19.852 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -18:47:20.057 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -18:47:20.057 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -18:47:20.062 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -18:47:20.067 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -18:47:20.071 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -18:47:20.071 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -18:47:20.282 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 4ae48b97-5d79-47b7-89a1-3be2039981e2 -18:47:20.282 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->4ae48b97-5d79-47b7-89a1-3be2039981e2 -18:47:20.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ae48b97-5d79-47b7-89a1-3be2039981e2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:47:20.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ae48b97-5d79-47b7-89a1-3be2039981e2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:47:20.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ae48b97-5d79-47b7-89a1-3be2039981e2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:47:20.282 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ae48b97-5d79-47b7-89a1-3be2039981e2] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -18:47:20.282 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -18:47:20.950 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ae48b97-5d79-47b7-89a1-3be2039981e2] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726570043177_117.143.60.138_59054 -18:47:20.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ae48b97-5d79-47b7-89a1-3be2039981e2] Notify connected event to listeners. -18:47:20.951 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ae48b97-5d79-47b7-89a1-3be2039981e2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:47:20.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -18:47:20.951 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [4ae48b97-5d79-47b7-89a1-3be2039981e2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801138228 -18:47:20.952 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.39', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -18:47:21.063 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.39:9701 register finished -18:47:21.272 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 24.732 seconds (process running for 25.394) -18:47:21.298 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -18:47:21.298 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -18:47:21.299 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -18:47:21.307 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -18:47:21.307 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -18:47:21.309 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -18:47:21.309 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -18:47:21.309 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -18:47:21.309 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -18:47:21.309 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -18:47:21.309 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -18:47:21.598 [RMI TCP Connection(7)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -18:47:22.867 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:04:05.295 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -19:04:05.351 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,87] - >>>>>>>>>>> xxl-job registry-remove success, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=200, msg=null, content=null] -19:04:05.351 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -19:04:05.351 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -19:04:05.351 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -19:04:05.352 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -19:04:05.352 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -19:04:05.352 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:04:05.352 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.39', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:04:05.412 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:04:05.413 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:04:05.413 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->4ae48b97-5d79-47b7-89a1-3be2039981e2 -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@7fd09a44[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 334] -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:04:05.414 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@3c0724f1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:04:05.415 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726570043177_117.143.60.138_59054 -19:04:05.417 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1148b32d[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 205] -19:04:05.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->4ae48b97-5d79-47b7-89a1-3be2039981e2 -19:04:05.417 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:04:05.417 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:04:05.417 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:04:05.426 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -19:04:05.428 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -19:04:05.431 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -19:04:05.431 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -19:04:05.432 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -19:04:12.171 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:04:14.848 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:04:14.849 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:04:14.949 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:04:16.493 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:04:17.286 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:04:17.287 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -19:04:17.287 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -19:04:17.408 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -19:04:17.410 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -19:04:17.415 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -19:04:17.416 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -19:04:17.416 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -19:04:17.417 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:04:19.518 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:04:19.518 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:04:19.602 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:04:22.783 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:04:22.785 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -19:04:22.785 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -19:04:27.764 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:04:29.757 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -19:04:31.691 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@2c29aa59[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -19:04:31.691 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@4159c03b[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -19:04:31.691 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@1236926e[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -19:04:31.852 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -19:04:32.038 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:04:32.038 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:04:32.039 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:04:32.043 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:04:32.047 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:04:32.047 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:04:32.368 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 7053378e-7e9e-4ccc-9e6f-0ebb53c8f205 -19:04:32.370 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->7053378e-7e9e-4ccc-9e6f-0ebb53c8f205 -19:04:32.370 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:04:32.370 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:04:32.371 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:04:32.372 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:04:32.372 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:04:32.456 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726571075062_117.143.60.138_61317 -19:04:32.457 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:04:32.457 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x00000008011394f8 -19:04:32.457 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify connected event to listeners. -19:04:32.457 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:04:32.459 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.39', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:04:32.494 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.39:9701 register finished -19:04:32.719 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 19.211 seconds (process running for 19.811) -19:04:32.733 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:04:32.733 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:04:32.734 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -19:04:32.742 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -19:04:32.743 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -19:04:32.744 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -19:04:32.744 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:04:32.744 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -19:04:32.745 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -19:04:32.745 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -19:04:32.745 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -19:04:32.909 [RMI TCP Connection(8)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:14:24.301 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:14:26.125 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:14:26.126 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:14:26.183 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:14:27.709 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:14:27.710 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -19:14:27.711 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -19:14:27.797 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -19:14:27.799 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -19:14:27.805 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -19:14:27.805 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -19:14:27.805 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -19:14:27.806 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:18:35.836 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:19:09.919 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:19:42.954 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:20:15.970 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:20:49.001 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:21:06.458 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:21:08.483 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:21:08.483 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:21:08.544 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:21:09.480 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:21:09.481 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -19:21:09.481 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -19:21:09.588 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -19:21:09.590 [main] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -19:21:09.593 [main] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -19:21:09.594 [main] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -19:21:09.594 [main] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -19:21:09.594 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:21:22.039 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:21:55.072 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:22:10.545 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:22:12.303 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:22:12.303 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:22:12.366 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:22:12.784 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:22:12.787 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:22:28.133 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:23:01.163 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:23:34.211 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:23:50.124 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:23:51.895 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:23:51.896 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:23:51.953 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:23:52.435 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:23:52.437 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:24:07.241 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:24:40.282 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:25:13.408 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:25:27.481 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:25:46.635 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:26:20.014 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:26:28.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server check success, currentServer is 47.116.173.119:8848 -19:26:45.227 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server healthy check fail, currentConnection = 1726571075062_117.143.60.138_61317 -19:26:45.227 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:26:45.227 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:48.347 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:49.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Success to connect a server [47.116.173.119:8848], connectionId = 1726572411297_117.143.60.138_64451 -19:26:49.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571075062_117.143.60.138_61317 -19:26:49.515 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571075062_117.143.60.138_61317 -19:26:49.515 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify disconnected event to listeners -19:26:49.515 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify connected event to listeners. -19:26:49.515 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:26:51.017 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system -19:26:54.238 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:26:56.829 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Server healthy check fail, currentConnection = 1726571058548_117.143.60.138_61258 -19:26:56.829 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:26:56.829 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:59.947 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:02.961 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:03.164 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:06.179 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:06.496 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:09.514 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:09.929 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:12.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572432848_117.143.60.138_64505 -19:27:12.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571058548_117.143.60.138_61258 -19:27:12.885 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571058548_117.143.60.138_61258 -19:27:12.885 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Notify disconnected event to listeners -19:27:12.885 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] DisConnected,clear listen context... -19:27:12.885 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Notify connected event to listeners. -19:27:12.885 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Connected,notify listen context... -19:27:27.267 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:27:30.928 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server healthy check fail, currentConnection = 1726572411297_117.143.60.138_64451 -19:27:30.928 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:27:30.928 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:34.063 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:37.069 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:27:37.284 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:27:39.709 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Success to connect a server [47.116.173.119:8848], connectionId = 1726572460220_117.143.60.138_64580 -19:27:39.709 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572411297_117.143.60.138_64451 -19:27:39.709 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572411297_117.143.60.138_64451 -19:27:39.709 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify disconnected event to listeners -19:27:39.709 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify connected event to listeners. -19:27:39.709 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:27:41.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server check success, currentServer is 47.116.173.119:8848 -19:27:42.675 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system -19:27:59.392 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Server healthy check fail, currentConnection = 1726572432848_117.143.60.138_64505 -19:27:59.392 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:27:59.392 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:02.529 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:02.858 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:28:05.546 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:05.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:08.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server check success, currentServer is 47.116.173.119:8848 -19:28:08.762 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:09.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:12.080 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:12.488 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:15.597 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572497306_117.143.60.138_64688 -19:28:15.597 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572432848_117.143.60.138_64505 -19:28:15.597 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572432848_117.143.60.138_64505 -19:28:15.597 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Notify disconnected event to listeners -19:28:15.597 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] DisConnected,clear listen context... -19:28:15.597 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Notify connected event to listeners. -19:28:15.597 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Connected,notify listen context... -19:28:38.030 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:28:48.820 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Server healthy check fail, currentConnection = 1726572497306_117.143.60.138_64688 -19:28:48.820 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:28:48.820 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:51.935 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:54.939 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:28:55.140 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:28:56.180 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572538514_117.143.60.138_64791 -19:28:56.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572497306_117.143.60.138_64688 -19:28:56.181 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572497306_117.143.60.138_64688 -19:28:56.181 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Notify disconnected event to listeners -19:28:56.181 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] DisConnected,clear listen context... -19:28:56.181 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Notify connected event to listeners. -19:28:56.181 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [9689d1e7-d803-48ed-a381-04cfc6d3ab34_config-0] Connected,notify listen context... -19:29:11.234 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:29:44.255 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:30:19.508 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:30:30.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server healthy check fail, currentConnection = 1726572460220_117.143.60.138_64580 -19:30:30.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:30:30.841 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:33.951 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:36.958 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:30:37.162 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:30:39.935 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Success to connect a server [47.116.173.119:8848], connectionId = 1726572640150_117.143.60.138_65092 -19:30:39.935 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572460220_117.143.60.138_64580 -19:30:39.935 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572460220_117.143.60.138_64580 -19:30:39.936 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify disconnected event to listeners -19:30:39.936 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify connected event to listeners. -19:30:39.936 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:30:41.554 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system -19:30:42.407 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server check success, currentServer is 47.116.173.119:8848 -19:30:53.674 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:31:04.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server healthy check fail, currentConnection = 1726572640150_117.143.60.138_65092 -19:31:04.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:31:04.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:07.464 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -19:31:07.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Success to connect a server [47.116.173.119:8848], connectionId = 1726572667772_117.143.60.138_65174 -19:31:07.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572640150_117.143.60.138_65092 -19:31:07.899 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572640150_117.143.60.138_65092 -19:31:07.899 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify disconnected event to listeners -19:31:07.899 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify connected event to listeners. -19:31:07.899 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:31:08.590 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Server check success, currentServer is 47.116.173.119:8848 -19:31:09.469 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-system -19:31:10.600 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -19:31:10.600 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -19:31:10.601 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -19:31:10.601 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -19:31:10.601 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -19:31:10.602 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -19:31:10.603 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:31:10.603 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.39', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:31:10.849 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:31:10.853 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:31:10.853 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:31:10.854 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:31:10.854 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:31:10.854 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:31:10.854 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:31:10.854 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:31:10.854 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:31:10.855 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:31:10.855 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:31:10.855 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:31:10.855 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->7053378e-7e9e-4ccc-9e6f-0ebb53c8f205 -19:31:10.855 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@6fdfdad5[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 530] -19:31:10.855 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:31:10.856 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7de4eba9[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:31:10.856 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572667772_117.143.60.138_65174 -19:31:10.856 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5e657249[Running, pool size = 15, active threads = 0, queued tasks = 0, completed tasks = 367] -19:31:10.857 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->7053378e-7e9e-4ccc-9e6f-0ebb53c8f205 -19:31:10.858 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [7053378e-7e9e-4ccc-9e6f-0ebb53c8f205] Notify disconnected event to listeners -19:31:10.858 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:31:10.858 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:31:10.860 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:31:10.897 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -19:31:10.902 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -19:31:10.908 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -19:31:10.909 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -19:31:10.909 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -19:31:30.124 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:31:33.818 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:31:33.819 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:31:33.945 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:31:40.526 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [88e6114a-b1bc-4290-b2c4-c60115a11a6f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:31:40.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:41.687 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [88e6114a-b1bc-4290-b2c4-c60115a11a6f_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572703577_117.143.60.138_65328 -19:31:41.687 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [88e6114a-b1bc-4290-b2c4-c60115a11a6f_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572683007_117.143.60.138_65223 -19:31:41.687 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572683007_117.143.60.138_65223 -19:31:41.688 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [88e6114a-b1bc-4290-b2c4-c60115a11a6f_config-0] Notify disconnected event to listeners -19:31:41.688 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [88e6114a-b1bc-4290-b2c4-c60115a11a6f_config-0] DisConnected,clear listen context... -19:31:41.688 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [88e6114a-b1bc-4290-b2c4-c60115a11a6f_config-0] Notify connected event to listeners. -19:31:41.688 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [88e6114a-b1bc-4290-b2c4-c60115a11a6f_config-0] Connected,notify listen context... -19:31:50.434 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:31:52.823 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:31:52.824 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:31:52.890 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:31:54.741 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:31:54.744 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:32:30.531 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:32:33.879 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:32:33.880 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:32:33.968 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:32:35.037 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:32:35.037 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:36:41.015 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:36:44.176 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:36:44.177 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:36:44.256 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:36:44.749 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:36:44.752 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:36:45.868 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:36:47.681 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:36:47.681 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:36:47.742 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:36:48.201 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:36:48.204 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:37:47.008 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:37:48.777 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:37:48.778 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:37:48.835 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:37:49.268 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:37:49.270 [main] INFO o.a.c.c.StandardService - [log,173] - Stopping service [Tomcat] -19:56:46.288 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:56:48.321 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:56:48.321 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:56:48.389 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:56:50.938 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:56:52.785 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:56:52.785 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:56:52.838 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:57:03.747 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:57:03.747 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -19:57:03.747 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -19:57:04.370 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:57:06.123 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -19:57:07.023 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@579c24c2[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -19:57:07.023 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@6497bc28[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -19:57:07.023 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@21e470cc[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -19:57:07.049 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -19:57:07.049 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -19:57:07.195 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10001 -19:57:07.208 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:57:07.209 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:57:07.209 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:57:07.212 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:57:07.214 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:57:07.214 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:57:07.441 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 50d45f74-f849-4de9-9209-231f6377f89d -19:57:07.443 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->50d45f74-f849-4de9-9209-231f6377f89d -19:57:07.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [50d45f74-f849-4de9-9209-231f6377f89d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:57:07.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [50d45f74-f849-4de9-9209-231f6377f89d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:57:07.443 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [50d45f74-f849-4de9-9209-231f6377f89d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:57:07.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [50d45f74-f849-4de9-9209-231f6377f89d] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:57:07.444 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:57:08.830 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -19:57:08.832 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -19:57:08.832 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -19:57:09.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [50d45f74-f849-4de9-9209-231f6377f89d] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726574231144_117.143.60.138_51124 -19:57:09.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [50d45f74-f849-4de9-9209-231f6377f89d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:57:09.095 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [50d45f74-f849-4de9-9209-231f6377f89d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801137d10 -19:57:09.095 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [50d45f74-f849-4de9-9209-231f6377f89d] Notify connected event to listeners. -19:57:09.095 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:57:09.096 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-car with instance Instance{instanceId='null', ip='10.113.37.39', port=10010, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:57:10.213 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Connect timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:57:10.445 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-car -19:57:11.044 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-car 10.113.37.39:10010 register finished -19:57:11.141 [main] INFO c.m.c.CloudCarApplication - [logStarted,56] - Started CloudCarApplication in 26.518 seconds (process running for 27.067) -19:57:11.148 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:57:11.149 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:57:11.149 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-car.yml+DEFAULT_GROUP+one -19:57:11.154 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-car.yml, group=DEFAULT_GROUP, cnt=1 -19:57:11.154 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-car.yml, group=DEFAULT_GROUP -19:57:11.155 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-car+DEFAULT_GROUP+one -19:57:11.155 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-car, group=DEFAULT_GROUP, cnt=1 -19:57:11.155 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-car, group=DEFAULT_GROUP -19:57:11.156 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-car-dev.yml+DEFAULT_GROUP+one -19:57:11.156 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-car-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:57:11.156 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-car-dev.yml, group=DEFAULT_GROUP -19:57:11.580 [RMI TCP Connection(4)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:57:12.749 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:57:13.966 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -19:57:14.896 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@53b97a9[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -19:57:14.896 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@3c2ed946[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -19:57:14.896 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@6a3044cb[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -19:57:14.920 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -19:57:14.920 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -19:57:14.920 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10001] is in use. -19:57:14.990 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10002 -19:57:15.111 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:57:15.112 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:57:15.112 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:57:15.115 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:57:15.118 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:57:15.118 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:57:15.834 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of eadd4aca-f9da-4225-ac4c-91f6716c6288 -19:57:15.836 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->eadd4aca-f9da-4225-ac4c-91f6716c6288 -19:57:15.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:57:15.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:57:15.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:57:15.836 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:57:15.837 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:57:16.363 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726574238721_117.143.60.138_51149 -19:57:16.363 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:57:16.363 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801113468 -19:57:16.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Notify connected event to listeners. -19:57:16.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:57:16.364 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.39', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:57:17.144 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.39:9701 register finished -19:57:17.256 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 37.573 seconds (process running for 38.236) -19:57:17.263 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:57:17.263 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:57:17.264 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -19:57:17.268 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -19:57:17.269 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -19:57:17.269 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -19:57:17.269 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:57:17.269 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -19:57:17.270 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -19:57:17.270 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -19:57:17.270 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -19:57:17.664 [RMI TCP Connection(4)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:57:18.160 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:57:43.348 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:57:51.308 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:58:16.414 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:58:24.358 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:58:49.524 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:58:58.479 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:59:23.638 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:59:32.610 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -19:59:56.675 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:00:05.645 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:00:29.728 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:00:38.665 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:01:02.754 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:01:11.686 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:01:35.788 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:01:44.768 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:02:08.802 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:02:17.790 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:02:41.821 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:02:50.815 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:03:14.838 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:03:23.849 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:03:47.873 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:03:56.914 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:04:20.965 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:04:30.984 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:04:53.991 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:05:04.037 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:05:22.458 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:05:22.458 [boundedElastic-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:05:22.489 [boundedElastic-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -20:05:22.489 [boundedElastic-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -20:05:23.063 [nacos-grpc-client-executor-47.116.173.119-118] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Receive server push request, request = NotifySubscriberRequest, requestId = 16503 -20:05:23.063 [nacos-grpc-client-executor-47.116.173.119-118] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [eadd4aca-f9da-4225-ac4c-91f6716c6288] Ack server push request, request = NotifySubscriberRequest, requestId = 16503 -20:05:27.019 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:05:37.070 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:06:00.070 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:06:10.110 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:06:33.117 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:06:43.128 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:07:06.145 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:07:16.162 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:07:39.176 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:07:49.191 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:08:12.219 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:08:22.214 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:08:45.264 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:08:55.283 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:09:18.393 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:09:29.363 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:09:51.431 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:10:02.384 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:10:24.518 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:10:35.415 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:10:57.592 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:11:08.470 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:11:30.756 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:11:41.524 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:12:03.868 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:12:14.616 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:12:36.883 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:12:47.650 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:13:09.937 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:13:20.705 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:13:42.963 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:13:53.725 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:14:16.001 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:14:27.753 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:14:49.030 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:15:00.791 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:15:22.187 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:15:33.854 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:15:55.311 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:16:06.881 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:16:28.346 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:16:39.910 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:17:01.399 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:17:12.958 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:17:34.420 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:17:46.009 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:18:07.472 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:18:19.090 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:18:40.503 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:18:52.127 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:19:13.592 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:19:25.179 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:19:46.674 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:19:58.201 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:20:19.696 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:20:31.241 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:20:52.752 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:21:05.340 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:21:25.945 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:21:38.372 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:21:58.973 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:22:11.386 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:22:32.001 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:22:44.417 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:23:06.048 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:23:17.512 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:23:39.068 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:23:50.545 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:24:12.086 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:24:23.627 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:24:45.107 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:24:56.694 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:25:18.205 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:25:29.838 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:25:51.267 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:26:02.887 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:26:24.442 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:26:36.026 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:26:57.534 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:27:09.076 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:27:30.559 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:27:42.229 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:28:03.611 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:28:15.270 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:28:36.662 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:28:48.342 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:29:09.690 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:29:21.417 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:29:42.822 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:29:55.568 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:30:15.850 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:30:28.606 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:30:48.903 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:31:01.665 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:31:21.926 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:31:34.787 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:31:55.074 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:32:07.898 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:32:28.225 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:32:42.139 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:33:01.407 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:33:15.254 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:33:34.547 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:33:48.317 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:34:07.573 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:34:21.350 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:34:40.671 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:34:51.433 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:34:51.471 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,91] - >>>>>>>>>>> xxl-job remoting server stop. -20:34:54.427 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:34:54.538 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:10001/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -20:34:54.539 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:34:54.539 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:34:54.539 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:34:54.539 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:34:54.539 [Thread-11] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:34:54.547 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:34:54.547 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-car with instance: Instance{instanceId='null', ip='10.113.37.39', port=10010, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:34:54.616 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:34:54.617 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:34:54.617 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->50d45f74-f849-4de9-9209-231f6377f89d -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@40b75d75[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 753] -20:34:54.618 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:34:54.619 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@6a976ce9[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:34:54.619 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726574231144_117.143.60.138_51124 -20:34:54.622 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@414a5f5b[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 467] -20:34:54.622 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->50d45f74-f849-4de9-9209-231f6377f89d -20:34:54.623 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:34:54.623 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:34:54.624 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:34:54.625 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -20:34:54.627 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -20:34:54.629 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -20:34:54.629 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -20:34:54.630 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -20:34:57.531 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,90] - >>>>>>>>>>> xxl-job registry-remove fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registryRemove, content=null] -20:34:57.531 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,105] - >>>>>>>>>>> xxl-job, executor registry thread destroy. -20:34:57.532 [SpringApplicationShutdownHook] INFO c.x.j.c.s.EmbedServer - [stop,117] - >>>>>>>>>>> xxl-job remoting server destroy success. -20:34:57.532 [xxl-job, executor JobLogFileCleanThread] INFO c.x.j.c.t.JobLogFileCleanThread - [run,99] - >>>>>>>>>>> xxl-job, executor JobLogFileCleanThread thread destroy. -20:34:57.532 [xxl-job, executor TriggerCallbackThread] INFO c.x.j.c.t.TriggerCallbackThread - [run,98] - >>>>>>>>>>> xxl-job, executor callback thread destroy. -20:34:57.532 [Thread-12] INFO c.x.j.c.t.TriggerCallbackThread - [run,128] - >>>>>>>>>>> xxl-job, executor retry callback thread destroy. -20:34:57.533 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:34:57.533 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.39', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:34:57.553 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:34:57.554 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:34:57.554 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:34:57.554 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:34:57.554 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:34:57.554 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:34:57.554 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:34:57.554 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->eadd4aca-f9da-4225-ac4c-91f6716c6288 -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@20c14d8f[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 752] -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7a0c392c[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:34:57.555 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726574238721_117.143.60.138_51149 -20:34:57.559 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6897256b[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 549] -20:34:57.559 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->eadd4aca-f9da-4225-ac4c-91f6716c6288 -20:34:57.560 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:34:57.560 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:34:57.560 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:34:57.573 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... -20:34:57.575 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... -20:34:57.577 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed -20:34:57.577 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, -20:34:57.577 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye -20:35:03.297 [main] INFO c.m.c.CloudCarApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:35:05.951 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:35:05.951 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:35:06.044 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:35:07.663 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -20:35:07.665 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -20:35:07.665 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -20:35:08.630 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:35:11.270 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:35:13.145 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@579c24c2[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:35:13.145 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@6497bc28[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:35:13.145 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@21e470cc[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:35:13.479 [Thread-12] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 9999 -20:35:13.531 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:35:13.532 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:35:13.532 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:35:13.538 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:35:13.543 [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:13.544 [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:13.656 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b48f752e-82b7-4247-a666-2067bd10741f -20:35:13.658 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->b48f752e-82b7-4247-a666-2067bd10741f -20:35:13.658 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b48f752e-82b7-4247-a666-2067bd10741f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:35:13.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b48f752e-82b7-4247-a666-2067bd10741f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:35:13.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b48f752e-82b7-4247-a666-2067bd10741f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:35:13.659 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b48f752e-82b7-4247-a666-2067bd10741f] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:35:13.660 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:35:13.729 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b48f752e-82b7-4247-a666-2067bd10741f] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726576516381_117.143.60.138_57755 -20:35:13.730 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b48f752e-82b7-4247-a666-2067bd10741f] Notify connected event to listeners. -20:35:13.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b48f752e-82b7-4247-a666-2067bd10741f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:35:13.730 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:35:13.730 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b48f752e-82b7-4247-a666-2067bd10741f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x0000000801137d10 -20:35:13.732 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-car with instance Instance{instanceId='null', ip='10.113.37.39', port=10010, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:35:13.753 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-car 10.113.37.39:10010 register finished -20:35:13.966 [main] INFO c.m.c.CloudCarApplication - [logStarted,56] - Started CloudCarApplication in 13.579 seconds (process running for 14.114) -20:35:13.975 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:35:13.975 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:35:13.976 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-car.yml+DEFAULT_GROUP+one -20:35:13.982 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-car.yml, group=DEFAULT_GROUP, cnt=1 -20:35:13.982 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-car.yml, group=DEFAULT_GROUP -20:35:13.983 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-car+DEFAULT_GROUP+one -20:35:13.983 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-car, group=DEFAULT_GROUP, cnt=1 -20:35:13.983 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-car, group=DEFAULT_GROUP -20:35:13.984 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-car-dev.yml+DEFAULT_GROUP+one -20:35:13.984 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-car-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:35:13.984 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-car-dev.yml, group=DEFAULT_GROUP -20:35:14.213 [RMI TCP Connection(5)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:35:16.524 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:35:27.786 [main] INFO c.m.s.CloudSystemApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:35:29.900 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:35:29.900 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:35:29.954 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:35:32.327 [main] INFO c.a.d.p.DruidDataSource - [init,1002] - {dataSource-1,master} inited -20:35:32.328 [main] INFO c.b.d.d.DynamicRoutingDataSource - [addDataSource,158] - dynamic-datasource - add a datasource named [master] success -20:35:32.328 [main] INFO c.b.d.d.DynamicRoutingDataSource - [afterPropertiesSet,241] - dynamic-datasource initial loaded [1] datasource,primary datasource named [master] -20:35:35.122 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:35:36.476 [main] INFO c.m.c.x.XXLJobConfig - [xxlJobExecutor,25] - >>>>>>>>>>> xxl-job config init success. -20:35:37.616 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-slice-demo, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@22ef78d8[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobSliceDemo] -20:35:37.616 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-no-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@5cfd305a[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoNoParam] -20:35:37.616 [main] INFO c.x.j.c.e.XxlJobExecutor - [registJobHandler,183] - >>>>>>>>>>> xxl-job register jobhandler success, name:xxl-job-demo-one-param, jobHandler:com.xxl.job.core.handler.impl.MethodJobHandler@30e9f28[class com.muyu.common.xxl.demo.XxlJobDemoService#xxlJobDemoOneParam] -20:35:37.642 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[9999] is in use. -20:35:37.642 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10000] is in use. -20:35:37.642 [main] INFO c.x.j.c.util.NetUtil - [isPortUsed,56] - >>>>>>>>>>> xxl-job, port[10001] is in use. -20:35:37.700 [Thread-13] INFO c.x.j.c.s.EmbedServer - [run,82] - >>>>>>>>>>> xxl-job remoting server start success, nettype = class com.xxl.job.core.server.EmbedServer, port = 10002 -20:35:37.853 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:35:37.853 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:35:37.853 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:35:37.857 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:35:37.859 [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:37.860 [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:38.004 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of ff0a5a89-8858-46a6-a545-635ba2286530 -20:35:38.006 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->ff0a5a89-8858-46a6-a545-635ba2286530 -20:35:38.006 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ff0a5a89-8858-46a6-a545-635ba2286530] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:35:38.006 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ff0a5a89-8858-46a6-a545-635ba2286530] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:35:38.007 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ff0a5a89-8858-46a6-a545-635ba2286530] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:35:38.007 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ff0a5a89-8858-46a6-a545-635ba2286530] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:35:38.007 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:35:38.208 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ff0a5a89-8858-46a6-a545-635ba2286530] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726576540785_117.143.60.138_57900 -20:35:38.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ff0a5a89-8858-46a6-a545-635ba2286530] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:35:38.209 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ff0a5a89-8858-46a6-a545-635ba2286530] Notify connected event to listeners. -20:35:38.209 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:35:38.209 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [ff0a5a89-8858-46a6-a545-635ba2286530] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$633/0x00000008011394f8 -20:35:38.210 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-system with instance Instance{instanceId='null', ip='10.113.37.39', port=9701, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:35:38.229 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-system 10.113.37.39:9701 register finished -20:35:38.406 [main] INFO c.m.s.CloudSystemApplication - [logStarted,56] - Started CloudSystemApplication in 13.395 seconds (process running for 13.964) -20:35:38.415 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:35:38.415 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:35:38.416 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system+DEFAULT_GROUP+one -20:35:38.422 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system, group=DEFAULT_GROUP, cnt=1 -20:35:38.422 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system, group=DEFAULT_GROUP -20:35:38.423 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system-dev.yml+DEFAULT_GROUP+one -20:35:38.423 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:35:38.423 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system-dev.yml, group=DEFAULT_GROUP -20:35:38.423 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-system.yml+DEFAULT_GROUP+one -20:35:38.423 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-system.yml, group=DEFAULT_GROUP, cnt=1 -20:35:38.424 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-system.yml, group=DEFAULT_GROUP -20:35:38.604 [RMI TCP Connection(8)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:35:40.793 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:35:49.557 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:36:13.820 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:36:22.720 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:36:46.853 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:36:55.756 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:37:19.918 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:37:29.917 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:37:52.979 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:38:03.103 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:38:26.031 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:38:36.134 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:38:59.079 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:39:09.158 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:39:32.100 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:39:42.200 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:40:05.142 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:40:15.233 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:40:38.168 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:40:48.350 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:41:11.209 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:41:21.503 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:41:44.231 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:41:54.521 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:42:17.260 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:42:27.591 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:42:50.288 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:43:00.629 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:43:23.348 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:43:33.686 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:43:56.418 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:44:06.849 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:44:29.481 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:44:39.884 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:45:02.525 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:45:12.944 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:45:35.663 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:45:45.968 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:46:08.724 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:46:18.997 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:46:42.782 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:46:52.052 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:47:15.849 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:47:25.174 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:47:48.881 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:47:58.280 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:48:21.902 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:48:31.354 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:48:55.017 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:49:04.368 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:49:28.061 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:49:37.430 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:50:01.082 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:50:10.566 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:50:34.217 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:50:43.681 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:51:07.366 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:51:16.864 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:51:40.511 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:51:50.973 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:52:13.591 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:52:24.043 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:52:46.667 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:52:57.081 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:53:19.719 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:53:30.194 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:53:52.827 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:54:03.341 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:54:25.969 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:54:36.532 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:54:59.125 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:55:09.700 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:55:32.287 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:55:42.826 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:56:05.395 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:56:15.863 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:56:38.589 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:56:48.901 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:57:11.651 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:57:22.590 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:57:44.679 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:57:55.636 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:58:17.792 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:58:28.670 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:58:50.829 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:59:01.706 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:59:23.865 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:59:34.794 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -20:59:56.961 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:00:07.822 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:00:29.999 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:00:40.854 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:01:03.077 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:01:13.911 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:01:37.180 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:01:47.068 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:02:10.281 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:02:20.095 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:02:44.412 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:02:53.240 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:03:18.531 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:03:26.446 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:03:51.635 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:03:59.618 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:04:24.729 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:04:32.655 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:04:57.773 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:05:05.684 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:05:30.884 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:05:38.725 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:06:03.918 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:06:11.873 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:06:37.057 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-system', registryValue='http://10.113.37.39:10002/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] -21:06:44.955 [xxl-job, executor ExecutorRegistryThread] INFO c.x.j.c.t.ExecutorRegistryThread - [run,54] - >>>>>>>>>>> xxl-job registry fail, registryParam:RegistryParam{registryGroup='EXECUTOR', registryKey='cloud-car', registryValue='http://10.113.37.39:9999/'}, registryResult:ReturnT [code=500, msg=xxl-job remoting error(Read timed out), for url : http://47.116.173.119:20800/api/registry, content=null] + at java.base/java.lang.Thread.run(Thread.java:842) +10:09:03.612 [lettuce-eventExecutorLoop-1-1] INFO i.l.c.p.ConnectionWatchdog - [log,171] - Reconnecting, last destination was /47.116.173.119:6379 +10:09:03.723 [lettuce-nioEventLoop-4-3] INFO i.l.c.p.ReconnectionHandler - [lambda$null$3,174] - Reconnected to 47.116.173.119/:6379 +10:37:30.264 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +10:37:30.265 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-system with instance: Instance{instanceId='null', ip='10.113.37.107', port=9707, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +10:37:30.342 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +10:37:30.344 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +10:37:30.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->721d7967-ec5a-4219-ac11-78782e7a3940 +10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1f2b4f55[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1713] +10:37:30.346 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2ef423b[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053896451_117.143.60.138_55969 +10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@72fd0743[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 1017] +10:37:30.347 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->721d7967-ec5a-4219-ac11-78782e7a3940 +10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +10:37:30.348 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +10:37:30.364 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,215] - dynamic-datasource start closing .... +10:37:30.370 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2204] - {dataSource-1} closing ... +10:37:30.376 [SpringApplicationShutdownHook] INFO c.a.d.p.DruidDataSource - [close,2277] - {dataSource-1} closed +10:37:30.378 [SpringApplicationShutdownHook] INFO c.b.d.d.d.DefaultDataSourceDestroyer - [destroy,98] - dynamic-datasource close the datasource named [master] success, +10:37:30.378 [SpringApplicationShutdownHook] INFO c.b.d.d.DynamicRoutingDataSource - [destroy,219] - dynamic-datasource all closed success,bye diff --git a/logs/cloud-visual-monitor/error.log b/logs/cloud-visual-monitor/error.log index 2d092a2..9e7e6c6 100644 --- a/logs/cloud-visual-monitor/error.log +++ b/logs/cloud-visual-monitor/error.log @@ -1,147 +1,8 @@ -16:12:10.838 [nacos-grpc-client-executor-47.116.173.119-287] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559514060_117.136.120.204_26641]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.850 [nacos-grpc-client-executor-47.116.173.119-253] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726559508663_117.136.120.204_26638]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:10.865 [http-nio-9101-exec-11] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception -16:12:10.922 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.946 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:10.978 [http-nio-9101-exec-11] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:11.087 [http-nio-9101-exec-11] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:11.197 [http-nio-9101-exec-11] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -16:12:11.197 [http-nio-9101-exec-11] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) +08:58:58.215 [http-nio-9101-exec-11] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 262300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1db7386f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +08:58:58.223 [http-nio-9101-exec-11] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 262300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1db7386f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -165,7 +26,7 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor101.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor57.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -173,7 +34,7 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor100.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor56.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -323,1263 +184,94 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.276 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 262300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1db7386f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 183 common frames omitted +08:59:55.782 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 904200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2359a062[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +08:59:55.782 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 904200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2359a062[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.291 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 904200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2359a062[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 32 common frames omitted +09:00:16.208 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=37c10e99e73d6c057f4263bfb6c299c3, Client-RequestTS=1727053213201, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 974800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@129f71d2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:00:16.208 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 974800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@129f71d2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 974800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@129f71d2[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:00:22.612 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 344800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@426fa4ef[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:00:22.612 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 344800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@426fa4ef[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:11.821 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.drainPendingCallbacks(DelayedClientCall.java:528) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$1DrainListenerRunnable.runInContext(DelayedClientCall.java:317) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.233 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:12.750 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.638 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:13.701 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:14.594 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:14.742 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.630 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:15.817 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:16.868 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:17.056 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.123 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:18.453 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.503 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:19.811 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:20.946 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:21.272 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.497 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:22.823 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.174 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:24.485 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.721 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:25.998 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -16:12:26.100 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -16:12:26.212 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -16:12:26.253 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:26.329 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -16:12:26.329 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 344800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@426fa4ef[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 13 common frames omitted +09:00:25.910 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.019 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.128 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.238 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:26.238 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -1594,7 +286,7 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) - at jdk.internal.reflect.GeneratedMethodAccessor102.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) @@ -1608,1236 +300,2538 @@ com.alibaba.nacos.api.exception.NacosException: Client not connected, current st at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.runAndReset$$$capture(FutureTask.java:305) - at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:27.583 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:34.652 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 714800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a7b1073[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:00:34.652 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 714800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a7b1073[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:28.187 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 714800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a7b1073[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 13 common frames omitted +09:00:41.233 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 300400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5af8cab[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:00:41.233 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 300400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5af8cab[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:29.544 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:12:30.134 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.405 [nacos-grpc-client-executor-47.116.173.119-501] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560753459_117.143.60.138_58337]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.405 [nacos-grpc-client-executor-47.116.173.119-558] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - [1726560754064_117.143.60.138_58354]Request stream error, switch server,error={} -com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$StreamObserverToCallListenerAdapter.onClose(ClientCalls.java:491) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: 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 com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.PooledByteBuf.setBytes(PooledByteBuf.java:256) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.buffer.AbstractByteBuf.writeBytes(AbstractByteBuf.java:1132) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doReadBytes(NioSocketChannel.java:357) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:151) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:788) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - ... 1 common frames omitted -16:28:39.412 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.416 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.531 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.531 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.750 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.750 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.ExecutionException: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.getDoneValue(AbstractFuture.java:592) - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:467) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) - at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: com.alibaba.nacos.shaded.io.grpc.StatusRuntimeException: UNAVAILABLE: io exception - at com.alibaba.nacos.shaded.io.grpc.Status.asRuntimeException(Status.java:537) - at com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$UnaryStreamToFuture.onClose(ClientCalls.java:548) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener$3.run(DelayedClientCall.java:489) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.delayOrExecute(DelayedClientCall.java:453) - at com.alibaba.nacos.shaded.io.grpc.internal.DelayedClientCall$DelayedListener.onClose(DelayedClientCall.java:486) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.closeObserver(ClientCallImpl.java:567) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl.access$300(ClientCallImpl.java:71) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInternal(ClientCallImpl.java:735) - at com.alibaba.nacos.shaded.io.grpc.internal.ClientCallImpl$ClientStreamListenerImpl$1StreamClosed.runInContext(ClientCallImpl.java:716) - at com.alibaba.nacos.shaded.io.grpc.internal.ContextRunnable.run(ContextRunnable.java:37) - at com.alibaba.nacos.shaded.io.grpc.internal.SerializingExecutor.run(SerializingExecutor.java:133) - ... 3 common frames omitted -Caused by: com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.AbstractChannel$AnnotatedSocketException: Network is unreachable: no further information: /47.116.173.119:9848 -Caused by: java.net.SocketException: Network is unreachable: no further information - at java.base/sun.nio.ch.Net.pollConnect(Native Method) - at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) - at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:337) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:334) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:724) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:650) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:562) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:997) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74) - at com.alibaba.nacos.shaded.io.grpc.netty.shaded.io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:33.468 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 604000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1b9e5cad[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 300400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5af8cab[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 13 common frames omitted +09:00:42.059 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 793000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1dd52dc6[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:36.600 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 805601 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@53c19783[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) - at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:47.259 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 654900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@70530b3f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:00:47.259 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 654900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@70530b3f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:41.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c815a021ad81d8ab8a4e64c175748c83, Client-RequestTS=1726572398859, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 25 milliseconds, 335300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@41bbd9c4[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] -19:26:41.889 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 25 milliseconds, 335300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@41bbd9c4[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 654900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@70530b3f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 13 common frames omitted +09:00:47.634 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67fbb732ad4219beddb1db314843388c, Client-RequestTS=1727053244621, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 621300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1f8d690[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:00:47.634 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 621300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1f8d690[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 25 milliseconds, 335300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@41bbd9c4[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 621300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1f8d690[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 10 common frames omitted -19:26:42.085 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=95e7f6473d41864b1614d9d9defa7db7, Client-RequestTS=1726572401955, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:42.192 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=95e7f6473d41864b1614d9d9defa7db7, Client-RequestTS=1726572401955, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:42.304 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=95e7f6473d41864b1614d9d9defa7db7, Client-RequestTS=1726572401955, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:42.407 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=95e7f6473d41864b1614d9d9defa7db7, Client-RequestTS=1726572401955, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:42.407 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + ... 9 common frames omitted +09:00:47.787 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=834339c71af8ab6326373d047951aac2, Client-RequestTS=1727053247685, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.888 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=834339c71af8ab6326373d047951aac2, Client-RequestTS=1727053247685, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:47.991 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=834339c71af8ab6326373d047951aac2, Client-RequestTS=1727053247685, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.101 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=834339c71af8ab6326373d047951aac2, Client-RequestTS=1727053247685, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.101 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:42.579 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=328baeaed5ff158c46ecf5ba12d1b4e2, Client-RequestTS=1726572402467, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:42.690 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=328baeaed5ff158c46ecf5ba12d1b4e2, Client-RequestTS=1726572402467, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:42.802 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=328baeaed5ff158c46ecf5ba12d1b4e2, Client-RequestTS=1726572402467, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:42.909 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=328baeaed5ff158c46ecf5ba12d1b4e2, Client-RequestTS=1726572402467, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:42.910 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:48.271 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99e9c0320af7645f8f502f6c7005a3a7, Client-RequestTS=1727053248163, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.379 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99e9c0320af7645f8f502f6c7005a3a7, Client-RequestTS=1727053248163, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.489 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99e9c0320af7645f8f502f6c7005a3a7, Client-RequestTS=1727053248163, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.597 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=99e9c0320af7645f8f502f6c7005a3a7, Client-RequestTS=1727053248163, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.597 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:43.087 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7faa6bc3e947c726957d5921b2569fa, Client-RequestTS=1726572402972, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:43.193 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7faa6bc3e947c726957d5921b2569fa, Client-RequestTS=1726572402972, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:43.309 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7faa6bc3e947c726957d5921b2569fa, Client-RequestTS=1726572402972, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:43.438 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7faa6bc3e947c726957d5921b2569fa, Client-RequestTS=1726572402972, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:43.438 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:48.771 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a25f5c31440e315080842e1309376ea, Client-RequestTS=1727053248660, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.880 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a25f5c31440e315080842e1309376ea, Client-RequestTS=1727053248660, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:48.991 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a25f5c31440e315080842e1309376ea, Client-RequestTS=1727053248660, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.098 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9a25f5c31440e315080842e1309376ea, Client-RequestTS=1727053248660, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.098 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:43.623 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4953d1a6e1a4d0560b5e3c3dd7a77e1a, Client-RequestTS=1726572403506, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:43.743 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4953d1a6e1a4d0560b5e3c3dd7a77e1a, Client-RequestTS=1726572403506, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:43.852 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4953d1a6e1a4d0560b5e3c3dd7a77e1a, Client-RequestTS=1726572403506, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:43.980 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4953d1a6e1a4d0560b5e3c3dd7a77e1a, Client-RequestTS=1726572403506, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:43.980 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:49.269 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d0b49faed4214c7815cfec680e2ce5c, Client-RequestTS=1727053249159, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.377 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d0b49faed4214c7815cfec680e2ce5c, Client-RequestTS=1727053249159, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.487 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d0b49faed4214c7815cfec680e2ce5c, Client-RequestTS=1727053249159, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8d0b49faed4214c7815cfec680e2ce5c, Client-RequestTS=1727053249159, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:44.147 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f115f4e2ffb98f1b93af23aee3c919af, Client-RequestTS=1726572404038, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:44.262 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f115f4e2ffb98f1b93af23aee3c919af, Client-RequestTS=1726572404038, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:44.373 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f115f4e2ffb98f1b93af23aee3c919af, Client-RequestTS=1726572404038, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:44.484 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f115f4e2ffb98f1b93af23aee3c919af, Client-RequestTS=1726572404038, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:44.484 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:49.766 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76cc17a6ea35c8788e92ed1126f31193, Client-RequestTS=1727053249657, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.875 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76cc17a6ea35c8788e92ed1126f31193, Client-RequestTS=1727053249657, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:49.984 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76cc17a6ea35c8788e92ed1126f31193, Client-RequestTS=1727053249657, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.095 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=76cc17a6ea35c8788e92ed1126f31193, Client-RequestTS=1727053249657, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.095 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:44.684 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9301446bae5c3cf2d71bdab9aed2e9ae, Client-RequestTS=1726572404559, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:44.797 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9301446bae5c3cf2d71bdab9aed2e9ae, Client-RequestTS=1726572404559, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:44.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9301446bae5c3cf2d71bdab9aed2e9ae, Client-RequestTS=1726572404559, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:45.014 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9301446bae5c3cf2d71bdab9aed2e9ae, Client-RequestTS=1726572404559, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:45.014 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:50.266 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86a181ecbe0de8c70ad7409d3226b3e, Client-RequestTS=1727053250158, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.376 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86a181ecbe0de8c70ad7409d3226b3e, Client-RequestTS=1727053250158, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.485 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86a181ecbe0de8c70ad7409d3226b3e, Client-RequestTS=1727053250158, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.594 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a86a181ecbe0de8c70ad7409d3226b3e, Client-RequestTS=1727053250158, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.594 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:45.189 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b2bdf24bb531537cd91bd3ee6da23dd6, Client-RequestTS=1726572405076, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:45.300 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b2bdf24bb531537cd91bd3ee6da23dd6, Client-RequestTS=1726572405076, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:45.422 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b2bdf24bb531537cd91bd3ee6da23dd6, Client-RequestTS=1726572405076, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:45.543 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b2bdf24bb531537cd91bd3ee6da23dd6, Client-RequestTS=1726572405076, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:45.543 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:50.765 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=323eee03bbdc499724bf551bd003891b, Client-RequestTS=1727053250655, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.874 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=323eee03bbdc499724bf551bd003891b, Client-RequestTS=1727053250655, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:50.982 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=323eee03bbdc499724bf551bd003891b, Client-RequestTS=1727053250655, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.093 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=323eee03bbdc499724bf551bd003891b, Client-RequestTS=1727053250655, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.093 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:45.720 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7888dd8e41b0044c005223d9385b6e7b, Client-RequestTS=1726572405606, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:45.843 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7888dd8e41b0044c005223d9385b6e7b, Client-RequestTS=1726572405606, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:45.968 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7888dd8e41b0044c005223d9385b6e7b, Client-RequestTS=1726572405606, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:46.085 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7888dd8e41b0044c005223d9385b6e7b, Client-RequestTS=1726572405606, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:46.085 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:51.264 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=379ef35652cde2b03ab7bfbc4639e1e3, Client-RequestTS=1727053251155, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.373 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=379ef35652cde2b03ab7bfbc4639e1e3, Client-RequestTS=1727053251155, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.483 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=379ef35652cde2b03ab7bfbc4639e1e3, Client-RequestTS=1727053251155, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.591 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=379ef35652cde2b03ab7bfbc4639e1e3, Client-RequestTS=1727053251155, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.591 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:46.261 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6d4d9cf99b91a05195b208595d7f550b, Client-RequestTS=1726572406145, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:46.382 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6d4d9cf99b91a05195b208595d7f550b, Client-RequestTS=1726572406145, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:46.498 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6d4d9cf99b91a05195b208595d7f550b, Client-RequestTS=1726572406145, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:46.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6d4d9cf99b91a05195b208595d7f550b, Client-RequestTS=1726572406145, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:46.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:51.763 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4be84a635bf247670651b791aa5c3df3, Client-RequestTS=1727053251652, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.870 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4be84a635bf247670651b791aa5c3df3, Client-RequestTS=1727053251652, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:51.979 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4be84a635bf247670651b791aa5c3df3, Client-RequestTS=1727053251652, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4be84a635bf247670651b791aa5c3df3, Client-RequestTS=1727053251652, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:46.754 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=92e7d638568378fd628beec3d78163b7, Client-RequestTS=1726572406651, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:46.859 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=92e7d638568378fd628beec3d78163b7, Client-RequestTS=1726572406651, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:46.966 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=92e7d638568378fd628beec3d78163b7, Client-RequestTS=1726572406651, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:47.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=92e7d638568378fd628beec3d78163b7, Client-RequestTS=1726572406651, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:47.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:52.260 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f43a2f4b92b91fc50f02a583aa705ee, Client-RequestTS=1727053252151, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.372 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f43a2f4b92b91fc50f02a583aa705ee, Client-RequestTS=1727053252151, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.480 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f43a2f4b92b91fc50f02a583aa705ee, Client-RequestTS=1727053252151, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3f43a2f4b92b91fc50f02a583aa705ee, Client-RequestTS=1727053252151, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:47.246 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e111902c783c4eb125e7d390b3d6d04e, Client-RequestTS=1726572407131, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:47.350 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e111902c783c4eb125e7d390b3d6d04e, Client-RequestTS=1726572407131, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:47.451 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e111902c783c4eb125e7d390b3d6d04e, Client-RequestTS=1726572407131, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:47.559 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e111902c783c4eb125e7d390b3d6d04e, Client-RequestTS=1726572407131, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:47.559 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:52.762 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa1e6bbaac6b33cf775e6dc8d2cceb2c, Client-RequestTS=1727053252651, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.869 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa1e6bbaac6b33cf775e6dc8d2cceb2c, Client-RequestTS=1727053252651, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:52.978 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa1e6bbaac6b33cf775e6dc8d2cceb2c, Client-RequestTS=1727053252651, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.086 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aa1e6bbaac6b33cf775e6dc8d2cceb2c, Client-RequestTS=1727053252651, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.086 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:47.731 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db9f95817f451363ff0515bdf5372704, Client-RequestTS=1726572407626, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:47.831 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db9f95817f451363ff0515bdf5372704, Client-RequestTS=1726572407626, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:47.941 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db9f95817f451363ff0515bdf5372704, Client-RequestTS=1726572407626, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:48.060 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db9f95817f451363ff0515bdf5372704, Client-RequestTS=1726572407626, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:48.060 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:53.259 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad0d064a020fb2e57b46e34d353c96e5, Client-RequestTS=1727053253150, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.367 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad0d064a020fb2e57b46e34d353c96e5, Client-RequestTS=1727053253150, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.476 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad0d064a020fb2e57b46e34d353c96e5, Client-RequestTS=1727053253150, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.584 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ad0d064a020fb2e57b46e34d353c96e5, Client-RequestTS=1727053253150, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.584 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:48.221 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=91b2ecbe13d359340643045dd0b8f158, Client-RequestTS=1726572408114, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:48.329 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=91b2ecbe13d359340643045dd0b8f158, Client-RequestTS=1726572408114, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:48.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=91b2ecbe13d359340643045dd0b8f158, Client-RequestTS=1726572408114, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:48.542 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=91b2ecbe13d359340643045dd0b8f158, Client-RequestTS=1726572408114, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:48.542 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:53.757 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a299713f46c57703a726be3fbb853416, Client-RequestTS=1727053253648, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.866 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a299713f46c57703a726be3fbb853416, Client-RequestTS=1727053253648, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:53.974 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a299713f46c57703a726be3fbb853416, Client-RequestTS=1727053253648, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a299713f46c57703a726be3fbb853416, Client-RequestTS=1727053253648, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:48.709 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42c824452891def0cc38a9e2961377a1, Client-RequestTS=1726572408598, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:48.812 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42c824452891def0cc38a9e2961377a1, Client-RequestTS=1726572408598, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:48.915 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42c824452891def0cc38a9e2961377a1, Client-RequestTS=1726572408598, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:49.021 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42c824452891def0cc38a9e2961377a1, Client-RequestTS=1726572408598, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:49.021 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:54.256 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=978a38bd347dcc586dfe4ef5c5aaff81, Client-RequestTS=1727053254146, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.366 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=978a38bd347dcc586dfe4ef5c5aaff81, Client-RequestTS=1727053254146, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.475 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=978a38bd347dcc586dfe4ef5c5aaff81, Client-RequestTS=1727053254146, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=978a38bd347dcc586dfe4ef5c5aaff81, Client-RequestTS=1727053254146, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.582 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:49.189 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d8708aa39ee23e728c49cb4a6e3db419, Client-RequestTS=1726572409072, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:49.292 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d8708aa39ee23e728c49cb4a6e3db419, Client-RequestTS=1726572409072, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:49.393 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d8708aa39ee23e728c49cb4a6e3db419, Client-RequestTS=1726572409072, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:49.501 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d8708aa39ee23e728c49cb4a6e3db419, Client-RequestTS=1726572409072, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:49.501 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:54.751 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b2fa2e21a819176a4eddb931b961b34, Client-RequestTS=1727053254644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.860 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b2fa2e21a819176a4eddb931b961b34, Client-RequestTS=1727053254644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:54.970 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b2fa2e21a819176a4eddb931b961b34, Client-RequestTS=1727053254644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.081 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5b2fa2e21a819176a4eddb931b961b34, Client-RequestTS=1727053254644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.081 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:49.672 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=64205ecb534a2510db630d50235b4043, Client-RequestTS=1726572409558, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:49.781 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=64205ecb534a2510db630d50235b4043, Client-RequestTS=1726572409558, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:49.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=64205ecb534a2510db630d50235b4043, Client-RequestTS=1726572409558, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:50.009 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=64205ecb534a2510db630d50235b4043, Client-RequestTS=1726572409558, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:50.009 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:55.251 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f62af2a14d88b69eeaeb863fe2593256, Client-RequestTS=1727053255143, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.359 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f62af2a14d88b69eeaeb863fe2593256, Client-RequestTS=1727053255143, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.470 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f62af2a14d88b69eeaeb863fe2593256, Client-RequestTS=1727053255143, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.579 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f62af2a14d88b69eeaeb863fe2593256, Client-RequestTS=1727053255143, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.579 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:50.205 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=260d9998123e157e5f0aaaf4f801c5cc, Client-RequestTS=1726572410084, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:50.316 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=260d9998123e157e5f0aaaf4f801c5cc, Client-RequestTS=1726572410084, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:50.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=260d9998123e157e5f0aaaf4f801c5cc, Client-RequestTS=1726572410084, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:50.539 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=260d9998123e157e5f0aaaf4f801c5cc, Client-RequestTS=1726572410084, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:50.539 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:55.749 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7cbe0bbededeedffe32b619c2024d10, Client-RequestTS=1727053255640, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.857 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7cbe0bbededeedffe32b619c2024d10, Client-RequestTS=1727053255640, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:55.966 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7cbe0bbededeedffe32b619c2024d10, Client-RequestTS=1727053255640, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d7cbe0bbededeedffe32b619c2024d10, Client-RequestTS=1727053255640, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:50.709 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d54a93d5f98a91473b366f066babf242, Client-RequestTS=1726572410600, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:50.817 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d54a93d5f98a91473b366f066babf242, Client-RequestTS=1726572410600, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:50.935 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d54a93d5f98a91473b366f066babf242, Client-RequestTS=1726572410600, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:51.055 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d54a93d5f98a91473b366f066babf242, Client-RequestTS=1726572410600, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:51.055 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:56.251 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=81edf4bb8aa33d5513c8dad794ebd61c, Client-RequestTS=1727053256142, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.361 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.361 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=81edf4bb8aa33d5513c8dad794ebd61c, Client-RequestTS=1727053256142, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.472 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=81edf4bb8aa33d5513c8dad794ebd61c, Client-RequestTS=1727053256142, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.472 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=81edf4bb8aa33d5513c8dad794ebd61c, Client-RequestTS=1727053256142, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.581 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:51.227 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d772aef260b81eef55c314829b8ce9e9, Client-RequestTS=1726572411117, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:51.330 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d772aef260b81eef55c314829b8ce9e9, Client-RequestTS=1726572411117, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:51.432 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d772aef260b81eef55c314829b8ce9e9, Client-RequestTS=1726572411117, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:51.551 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d772aef260b81eef55c314829b8ce9e9, Client-RequestTS=1726572411117, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:51.551 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:56.690 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.690 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:56.752 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50a0af4b7a2bb3517bf75340df63fb77, Client-RequestTS=1727053256644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.862 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50a0af4b7a2bb3517bf75340df63fb77, Client-RequestTS=1727053256644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:56.974 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50a0af4b7a2bb3517bf75340df63fb77, Client-RequestTS=1727053256644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.082 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50a0af4b7a2bb3517bf75340df63fb77, Client-RequestTS=1727053256644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.082 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:51.717 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a3c1ebb1cf6ee6260b9e4cb9c489217, Client-RequestTS=1726572411612, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:51.823 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a3c1ebb1cf6ee6260b9e4cb9c489217, Client-RequestTS=1726572411612, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:51.934 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a3c1ebb1cf6ee6260b9e4cb9c489217, Client-RequestTS=1726572411612, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:52.037 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a3c1ebb1cf6ee6260b9e4cb9c489217, Client-RequestTS=1726572411612, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:52.037 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:57.253 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec703fb4c7affa03fa046527934ef3f6, Client-RequestTS=1727053257145, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.364 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec703fb4c7affa03fa046527934ef3f6, Client-RequestTS=1727053257145, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.472 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec703fb4c7affa03fa046527934ef3f6, Client-RequestTS=1727053257145, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ec703fb4c7affa03fa046527934ef3f6, Client-RequestTS=1727053257145, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:52.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=198ead9445ab63bd4e9ae4968ac5ead1, Client-RequestTS=1726572412106, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:52.327 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=198ead9445ab63bd4e9ae4968ac5ead1, Client-RequestTS=1726572412106, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:52.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=198ead9445ab63bd4e9ae4968ac5ead1, Client-RequestTS=1726572412106, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:52.547 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=198ead9445ab63bd4e9ae4968ac5ead1, Client-RequestTS=1726572412106, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:52.547 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:57.754 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e424e7b5b428af03b60f0a3a718b1c5a, Client-RequestTS=1727053257644, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.865 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e424e7b5b428af03b60f0a3a718b1c5a, Client-RequestTS=1727053257644, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:57.973 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e424e7b5b428af03b60f0a3a718b1c5a, Client-RequestTS=1727053257644, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e424e7b5b428af03b60f0a3a718b1c5a, Client-RequestTS=1727053257644, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:52.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfaa8a15213a2cecd1bf825cd8427b2b, Client-RequestTS=1726572412610, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:52.822 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfaa8a15213a2cecd1bf825cd8427b2b, Client-RequestTS=1726572412610, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:52.934 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfaa8a15213a2cecd1bf825cd8427b2b, Client-RequestTS=1726572412610, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:53.050 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bfaa8a15213a2cecd1bf825cd8427b2b, Client-RequestTS=1726572412610, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:53.050 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:58.254 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf00319e2b31ac87222ee68fc8ed4c7, Client-RequestTS=1727053258145, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.362 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf00319e2b31ac87222ee68fc8ed4c7, Client-RequestTS=1727053258145, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.473 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf00319e2b31ac87222ee68fc8ed4c7, Client-RequestTS=1727053258145, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ccf00319e2b31ac87222ee68fc8ed4c7, Client-RequestTS=1727053258145, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.583 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:53.227 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8736f0fdc7b3b02294ed3b5d7c2a1482, Client-RequestTS=1726572413123, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:53.330 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8736f0fdc7b3b02294ed3b5d7c2a1482, Client-RequestTS=1726572413123, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:53.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8736f0fdc7b3b02294ed3b5d7c2a1482, Client-RequestTS=1726572413123, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:53.539 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8736f0fdc7b3b02294ed3b5d7c2a1482, Client-RequestTS=1726572413123, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:53.539 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:58.753 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c09e0e1fa1945342eb20396472e340, Client-RequestTS=1727053258645, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.862 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c09e0e1fa1945342eb20396472e340, Client-RequestTS=1727053258645, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:58.971 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c09e0e1fa1945342eb20396472e340, Client-RequestTS=1727053258645, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f9c09e0e1fa1945342eb20396472e340, Client-RequestTS=1727053258645, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.078 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:53.743 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dddb01ad08f33244eb1cdfd4678b33f0, Client-RequestTS=1726572413618, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:53.865 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dddb01ad08f33244eb1cdfd4678b33f0, Client-RequestTS=1726572413618, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:53.967 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dddb01ad08f33244eb1cdfd4678b33f0, Client-RequestTS=1726572413618, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:54.076 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dddb01ad08f33244eb1cdfd4678b33f0, Client-RequestTS=1726572413618, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:54.076 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:59.250 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cefd778475e66af93770c9e1c262948c, Client-RequestTS=1727053259141, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.359 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cefd778475e66af93770c9e1c262948c, Client-RequestTS=1727053259141, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.468 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cefd778475e66af93770c9e1c262948c, Client-RequestTS=1727053259141, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.578 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cefd778475e66af93770c9e1c262948c, Client-RequestTS=1727053259141, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.578 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:54.238 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2363febec278a5f9338bb7ead33e198d, Client-RequestTS=1726572414131, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:54.359 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2363febec278a5f9338bb7ead33e198d, Client-RequestTS=1726572414131, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:54.476 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2363febec278a5f9338bb7ead33e198d, Client-RequestTS=1726572414131, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:54.585 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2363febec278a5f9338bb7ead33e198d, Client-RequestTS=1726572414131, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:54.585 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:59.750 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9577889c46d7c3a257b40acbcb04a3b, Client-RequestTS=1727053259642, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.859 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9577889c46d7c3a257b40acbcb04a3b, Client-RequestTS=1727053259642, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:00:59.967 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9577889c46d7c3a257b40acbcb04a3b, Client-RequestTS=1727053259642, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9577889c46d7c3a257b40acbcb04a3b, Client-RequestTS=1727053259642, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:54.760 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c5a1fcc54ce70d3f723cd8dd81821c0, Client-RequestTS=1726572414639, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:54.866 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c5a1fcc54ce70d3f723cd8dd81821c0, Client-RequestTS=1726572414639, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:54.989 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c5a1fcc54ce70d3f723cd8dd81821c0, Client-RequestTS=1726572414639, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:55.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c5a1fcc54ce70d3f723cd8dd81821c0, Client-RequestTS=1726572414639, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:55.113 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:00.249 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc09f19101197287742371d1372abab5, Client-RequestTS=1727053260139, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.357 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc09f19101197287742371d1372abab5, Client-RequestTS=1727053260139, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.468 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc09f19101197287742371d1372abab5, Client-RequestTS=1727053260139, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.575 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fc09f19101197287742371d1372abab5, Client-RequestTS=1727053260139, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.575 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:55.276 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f1d6bcec6cdf4e5597d4b02e8e0f6a7f, Client-RequestTS=1726572415175, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:55.388 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f1d6bcec6cdf4e5597d4b02e8e0f6a7f, Client-RequestTS=1726572415175, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:55.498 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f1d6bcec6cdf4e5597d4b02e8e0f6a7f, Client-RequestTS=1726572415175, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:55.604 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f1d6bcec6cdf4e5597d4b02e8e0f6a7f, Client-RequestTS=1726572415175, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:55.604 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:00.747 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4c7889d313d94e067fc37756de119c7, Client-RequestTS=1727053260638, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.857 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4c7889d313d94e067fc37756de119c7, Client-RequestTS=1727053260638, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:00.966 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4c7889d313d94e067fc37756de119c7, Client-RequestTS=1727053260638, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4c7889d313d94e067fc37756de119c7, Client-RequestTS=1727053260638, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:55.777 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3a4ac7c3d4403dd1c7b126181b396bf3, Client-RequestTS=1726572415671, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:55.883 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3a4ac7c3d4403dd1c7b126181b396bf3, Client-RequestTS=1726572415671, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:55.997 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3a4ac7c3d4403dd1c7b126181b396bf3, Client-RequestTS=1726572415671, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:56.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3a4ac7c3d4403dd1c7b126181b396bf3, Client-RequestTS=1726572415671, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:56.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:01.247 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=136d49f60a55dc1e6855f7d5ae702ec8, Client-RequestTS=1727053261139, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.356 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=136d49f60a55dc1e6855f7d5ae702ec8, Client-RequestTS=1727053261139, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.466 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=136d49f60a55dc1e6855f7d5ae702ec8, Client-RequestTS=1727053261139, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.574 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=136d49f60a55dc1e6855f7d5ae702ec8, Client-RequestTS=1727053261139, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.574 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:56.319 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba808043769b87dcec9565ba78a83599, Client-RequestTS=1726572416197, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:56.428 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba808043769b87dcec9565ba78a83599, Client-RequestTS=1726572416197, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:56.538 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba808043769b87dcec9565ba78a83599, Client-RequestTS=1726572416197, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:26:56.642 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba808043769b87dcec9565ba78a83599, Client-RequestTS=1726572416197, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:26:56.642 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:01.747 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87da9cc8199061e482cdb6a404c57ba5, Client-RequestTS=1727053261637, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.855 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87da9cc8199061e482cdb6a404c57ba5, Client-RequestTS=1727053261637, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:01.962 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87da9cc8199061e482cdb6a404c57ba5, Client-RequestTS=1727053261637, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.072 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87da9cc8199061e482cdb6a404c57ba5, Client-RequestTS=1727053261637, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.072 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:56.810 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1596150cc8ebcd5083b849ca0aafb663, Client-RequestTS=1726572416699, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:26:56.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1596150cc8ebcd5083b849ca0aafb663, Client-RequestTS=1726572416699, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:26:59.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1596150cc8ebcd5083b849ca0aafb663, Client-RequestTS=1726572416699, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 655900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@eb27d5c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] -19:26:59.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 655900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@eb27d5c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.243 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c02e31adf8862a890372555bb75872d, Client-RequestTS=1727053262134, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.355 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c02e31adf8862a890372555bb75872d, Client-RequestTS=1727053262134, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.463 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c02e31adf8862a890372555bb75872d, Client-RequestTS=1727053262134, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.572 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2c02e31adf8862a890372555bb75872d, Client-RequestTS=1727053262134, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.572 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 655900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@eb27d5c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.603 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 865400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@69fb9e87[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) - ... 10 common frames omitted -19:27:00.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c571a78a240484c0d0f33ee6ca0b2a97, Client-RequestTS=1726572420002, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:00.230 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c571a78a240484c0d0f33ee6ca0b2a97, Client-RequestTS=1726572420002, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:00.334 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c571a78a240484c0d0f33ee6ca0b2a97, Client-RequestTS=1726572420002, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:00.436 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c571a78a240484c0d0f33ee6ca0b2a97, Client-RequestTS=1726572420002, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:00.436 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.742 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=370030ff50d4e8f9b9dadb0c90dd4fdc, Client-RequestTS=1727053262635, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.851 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=370030ff50d4e8f9b9dadb0c90dd4fdc, Client-RequestTS=1727053262635, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:02.913 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 5 milliseconds, 615600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@44fceeab[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:02.960 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=370030ff50d4e8f9b9dadb0c90dd4fdc, Client-RequestTS=1727053262635, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=370030ff50d4e8f9b9dadb0c90dd4fdc, Client-RequestTS=1727053262635, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:00.605 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff89184746c099f000ad5b3ea8655f61, Client-RequestTS=1726572420488, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:00.712 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff89184746c099f000ad5b3ea8655f61, Client-RequestTS=1726572420488, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:00.818 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff89184746c099f000ad5b3ea8655f61, Client-RequestTS=1726572420488, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:00.921 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ff89184746c099f000ad5b3ea8655f61, Client-RequestTS=1726572420488, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:00.921 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:03.243 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7ba36a7c9d946d3c5bf75d1b885d5f6, Client-RequestTS=1727053263134, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.355 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7ba36a7c9d946d3c5bf75d1b885d5f6, Client-RequestTS=1727053263134, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.462 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7ba36a7c9d946d3c5bf75d1b885d5f6, Client-RequestTS=1727053263134, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.571 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c7ba36a7c9d946d3c5bf75d1b885d5f6, Client-RequestTS=1727053263134, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.571 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:01.087 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=63ffa3befe4a5dd3b201b6816bd9d009, Client-RequestTS=1726572420975, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:01.193 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=63ffa3befe4a5dd3b201b6816bd9d009, Client-RequestTS=1726572420975, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:01.322 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=63ffa3befe4a5dd3b201b6816bd9d009, Client-RequestTS=1726572420975, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:01.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=63ffa3befe4a5dd3b201b6816bd9d009, Client-RequestTS=1726572420975, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:01.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:03.744 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f11c704d1d7c40c3e6f41deee4894af4, Client-RequestTS=1727053263635, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.854 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f11c704d1d7c40c3e6f41deee4894af4, Client-RequestTS=1727053263635, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:03.963 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f11c704d1d7c40c3e6f41deee4894af4, Client-RequestTS=1727053263635, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f11c704d1d7c40c3e6f41deee4894af4, Client-RequestTS=1727053263635, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:01.598 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f39a14da052fc034b4c8f177d87ff3d0, Client-RequestTS=1726572421492, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:01.708 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f39a14da052fc034b4c8f177d87ff3d0, Client-RequestTS=1726572421492, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:01.813 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f39a14da052fc034b4c8f177d87ff3d0, Client-RequestTS=1726572421492, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:01.938 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f39a14da052fc034b4c8f177d87ff3d0, Client-RequestTS=1726572421492, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:01.939 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:04.244 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a26c5386aa586868eb266a183579c5e, Client-RequestTS=1727053264133, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.351 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a26c5386aa586868eb266a183579c5e, Client-RequestTS=1727053264133, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a26c5386aa586868eb266a183579c5e, Client-RequestTS=1727053264133, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6a26c5386aa586868eb266a183579c5e, Client-RequestTS=1727053264133, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:02.105 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=021e9ef59ab3ed3286aa1322e9061209, Client-RequestTS=1726572421990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:02.222 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=021e9ef59ab3ed3286aa1322e9061209, Client-RequestTS=1726572421990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:02.339 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=021e9ef59ab3ed3286aa1322e9061209, Client-RequestTS=1726572421990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:02.456 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=021e9ef59ab3ed3286aa1322e9061209, Client-RequestTS=1726572421990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:02.456 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:04.740 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45fa72da8b9e34d29fb7f34a75756922, Client-RequestTS=1727053264631, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.849 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45fa72da8b9e34d29fb7f34a75756922, Client-RequestTS=1727053264631, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:04.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45fa72da8b9e34d29fb7f34a75756922, Client-RequestTS=1727053264631, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=45fa72da8b9e34d29fb7f34a75756922, Client-RequestTS=1727053264631, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:02.641 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a91e307e585968560e7bb65751dc0063, Client-RequestTS=1726572422530, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:02.763 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a91e307e585968560e7bb65751dc0063, Client-RequestTS=1726572422530, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:02.871 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a91e307e585968560e7bb65751dc0063, Client-RequestTS=1726572422530, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:02.980 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a91e307e585968560e7bb65751dc0063, Client-RequestTS=1726572422530, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:02.980 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.240 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=71d6e3bee8f5bb33cce896a1f1bd351e, Client-RequestTS=1727053265130, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.349 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=71d6e3bee8f5bb33cce896a1f1bd351e, Client-RequestTS=1727053265130, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.457 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=71d6e3bee8f5bb33cce896a1f1bd351e, Client-RequestTS=1727053265130, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=71d6e3bee8f5bb33cce896a1f1bd351e, Client-RequestTS=1727053265130, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:03.164 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=021340a6e7dd2fb632fc2482c2d9fa8c, Client-RequestTS=1726572423042, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:03.265 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=021340a6e7dd2fb632fc2482c2d9fa8c, Client-RequestTS=1726572423042, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:03.376 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=021340a6e7dd2fb632fc2482c2d9fa8c, Client-RequestTS=1726572423042, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:03.485 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=021340a6e7dd2fb632fc2482c2d9fa8c, Client-RequestTS=1726572423042, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:03.485 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.723 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 896700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6ca66aca[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:05.739 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c897acffa4ebcb6f15d16c0d1d6e714, Client-RequestTS=1727053265630, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.847 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c897acffa4ebcb6f15d16c0d1d6e714, Client-RequestTS=1727053265630, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:05.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c897acffa4ebcb6f15d16c0d1d6e714, Client-RequestTS=1727053265630, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.034 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 970600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@380407bd[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:06.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c897acffa4ebcb6f15d16c0d1d6e714, Client-RequestTS=1727053265630, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:03.655 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bc80bf8ebcd79484d30f232445ba968e, Client-RequestTS=1726572423547, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:03.764 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bc80bf8ebcd79484d30f232445ba968e, Client-RequestTS=1726572423547, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:03.865 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bc80bf8ebcd79484d30f232445ba968e, Client-RequestTS=1726572423547, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:03.980 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bc80bf8ebcd79484d30f232445ba968e, Client-RequestTS=1726572423547, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:03.980 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:06.238 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=073075eddf3b6adfc3bdcb85d7a4986d, Client-RequestTS=1727053266127, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.349 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=073075eddf3b6adfc3bdcb85d7a4986d, Client-RequestTS=1727053266127, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.458 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=073075eddf3b6adfc3bdcb85d7a4986d, Client-RequestTS=1727053266127, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=073075eddf3b6adfc3bdcb85d7a4986d, Client-RequestTS=1727053266127, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:04.158 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7dcbd8dc97bce8cbbe9b293c469badf4, Client-RequestTS=1726572424043, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:04.269 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7dcbd8dc97bce8cbbe9b293c469badf4, Client-RequestTS=1726572424043, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:04.378 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7dcbd8dc97bce8cbbe9b293c469badf4, Client-RequestTS=1726572424043, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:04.481 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7dcbd8dc97bce8cbbe9b293c469badf4, Client-RequestTS=1726572424043, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:04.481 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:06.740 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56ce3a8bbcbbcb17ff683f95bc895f67, Client-RequestTS=1727053266630, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.850 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56ce3a8bbcbbcb17ff683f95bc895f67, Client-RequestTS=1727053266630, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:06.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56ce3a8bbcbbcb17ff683f95bc895f67, Client-RequestTS=1727053266630, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56ce3a8bbcbbcb17ff683f95bc895f67, Client-RequestTS=1727053266630, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:04.651 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=23a7696363db49e77b10cbb44134bba9, Client-RequestTS=1726572424543, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:04.764 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=23a7696363db49e77b10cbb44134bba9, Client-RequestTS=1726572424543, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:04.880 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=23a7696363db49e77b10cbb44134bba9, Client-RequestTS=1726572424543, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:04.996 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=23a7696363db49e77b10cbb44134bba9, Client-RequestTS=1726572424543, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:04.996 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:07.239 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4bb4b67ec5782a301e9a0521bc2cd877, Client-RequestTS=1727053267130, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.349 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4bb4b67ec5782a301e9a0521bc2cd877, Client-RequestTS=1727053267130, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.459 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4bb4b67ec5782a301e9a0521bc2cd877, Client-RequestTS=1727053267130, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4bb4b67ec5782a301e9a0521bc2cd877, Client-RequestTS=1727053267130, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:05.181 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87776cbf3e60360167a24b7782c9f39c, Client-RequestTS=1726572425064, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:05.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87776cbf3e60360167a24b7782c9f39c, Client-RequestTS=1726572425064, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:05.393 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87776cbf3e60360167a24b7782c9f39c, Client-RequestTS=1726572425064, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:05.494 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=87776cbf3e60360167a24b7782c9f39c, Client-RequestTS=1726572425064, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:05.494 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:07.742 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=387a4c64ea2e9829ab9909962801ae44, Client-RequestTS=1727053267633, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:07.851 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=387a4c64ea2e9829ab9909962801ae44, Client-RequestTS=1727053267633, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.732 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053267960_117.143.60.138_58102, request = ConfigBatchListenRequest +09:01:08.835 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=387a4c64ea2e9829ab9909962801ae44, Client-RequestTS=1727053267633, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Connection is unregistered. +09:01:08.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=387a4c64ea2e9829ab9909962801ae44, Client-RequestTS=1727053267633, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:08.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:05.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c9bbacc346cc3474e2350354257e29f, Client-RequestTS=1726572425560, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:05.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c9bbacc346cc3474e2350354257e29f, Client-RequestTS=1726572425560, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:05.905 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c9bbacc346cc3474e2350354257e29f, Client-RequestTS=1726572425560, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:06.006 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7c9bbacc346cc3474e2350354257e29f, Client-RequestTS=1726572425560, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:06.006 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:09.118 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c76ece3962d88adbec07a2fbed33463, Client-RequestTS=1727053269009, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.228 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c76ece3962d88adbec07a2fbed33463, Client-RequestTS=1727053269009, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.251 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727053266735_117.143.60.138_58100, request = InstanceRequest +09:01:09.336 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c76ece3962d88adbec07a2fbed33463, Client-RequestTS=1727053269009, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.367 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +09:01:09.444 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0c76ece3962d88adbec07a2fbed33463, Client-RequestTS=1727053269009, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.444 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:06.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=08571cddc48734b640c0b214caf2a1a1, Client-RequestTS=1726572426072, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:06.280 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=08571cddc48734b640c0b214caf2a1a1, Client-RequestTS=1726572426072, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:06.397 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=08571cddc48734b640c0b214caf2a1a1, Client-RequestTS=1726572426072, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:06.512 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=08571cddc48734b640c0b214caf2a1a1, Client-RequestTS=1726572426072, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY -19:27:06.513 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:09.474 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.582 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.614 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5f277651d790959fd2caa3132a2f2641, Client-RequestTS=1727053269504, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.692 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.692 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:09.723 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5f277651d790959fd2caa3132a2f2641, Client-RequestTS=1727053269504, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.833 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5f277651d790959fd2caa3132a2f2641, Client-RequestTS=1727053269504, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.941 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5f277651d790959fd2caa3132a2f2641, Client-RequestTS=1727053269504, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:09.941 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:06.690 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4213d7376d032c74dd5d8deaa052f29, Client-RequestTS=1726572426580, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY -19:27:06.801 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4213d7376d032c74dd5d8deaa052f29, Client-RequestTS=1726572426580, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY -19:27:06.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=AUTH_DISABLED, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d4213d7376d032c74dd5d8deaa052f29, Client-RequestTS=1726572426580, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY -19:27:34.405 [http-nio-9101-exec-9] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19 milliseconds, 398801 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@58de9337[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] -19:27:34.414 [http-nio-9101-exec-9] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19 milliseconds, 398801 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@58de9337[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:10.110 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1dff5a5d12b61c826058e8e775b0028, Client-RequestTS=1727053270002, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1dff5a5d12b61c826058e8e775b0028, Client-RequestTS=1727053270002, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.328 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1dff5a5d12b61c826058e8e775b0028, Client-RequestTS=1727053270002, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1dff5a5d12b61c826058e8e775b0028, Client-RequestTS=1727053270002, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.437 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:10.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1118223562b22cd6471832d47ee6fff, Client-RequestTS=1727053270500, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1118223562b22cd6471832d47ee6fff, Client-RequestTS=1727053270500, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.828 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1118223562b22cd6471832d47ee6fff, Client-RequestTS=1727053270500, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.937 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1118223562b22cd6471832d47ee6fff, Client-RequestTS=1727053270500, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:10.937 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:11.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=83923f2bf9e6835b7dc06ec90364c665, Client-RequestTS=1727053270999, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.220 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=83923f2bf9e6835b7dc06ec90364c665, Client-RequestTS=1727053270999, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.329 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=83923f2bf9e6835b7dc06ec90364c665, Client-RequestTS=1727053270999, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.438 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=83923f2bf9e6835b7dc06ec90364c665, Client-RequestTS=1727053270999, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.438 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:11.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5028f65e099af589520c08207cfa6585, Client-RequestTS=1727053271500, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.717 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5028f65e099af589520c08207cfa6585, Client-RequestTS=1727053271500, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.748 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 184200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@621b5d61[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:11.827 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5028f65e099af589520c08207cfa6585, Client-RequestTS=1727053271500, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.936 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5028f65e099af589520c08207cfa6585, Client-RequestTS=1727053271500, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:11.936 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:12.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cd94a03dcc539f8ac33c820589ef7ca5, Client-RequestTS=1727053271999, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.215 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cd94a03dcc539f8ac33c820589ef7ca5, Client-RequestTS=1727053271999, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.261 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 452100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@125ca3a2[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:12.324 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cd94a03dcc539f8ac33c820589ef7ca5, Client-RequestTS=1727053271999, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.432 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cd94a03dcc539f8ac33c820589ef7ca5, Client-RequestTS=1727053271999, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.432 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:12.602 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=053e014f5151c8d6f6951d69a5f96272, Client-RequestTS=1727053272493, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.711 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=053e014f5151c8d6f6951d69a5f96272, Client-RequestTS=1727053272493, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.820 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=053e014f5151c8d6f6951d69a5f96272, Client-RequestTS=1727053272493, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=053e014f5151c8d6f6951d69a5f96272, Client-RequestTS=1727053272493, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:12.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:13.100 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a48dcda6c074f847cb383f17966aeda7, Client-RequestTS=1727053272990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.208 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a48dcda6c074f847cb383f17966aeda7, Client-RequestTS=1727053272990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.317 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a48dcda6c074f847cb383f17966aeda7, Client-RequestTS=1727053272990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.428 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a48dcda6c074f847cb383f17966aeda7, Client-RequestTS=1727053272990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.428 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:13.600 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aed4b7f4fb8e633a21d5003587506cd1, Client-RequestTS=1727053273491, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.710 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aed4b7f4fb8e633a21d5003587506cd1, Client-RequestTS=1727053273491, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.818 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aed4b7f4fb8e633a21d5003587506cd1, Client-RequestTS=1727053273491, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=aed4b7f4fb8e633a21d5003587506cd1, Client-RequestTS=1727053273491, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:13.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.100 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f61b73dab3dcca9558af3460d8960262, Client-RequestTS=1727053273990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.207 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f61b73dab3dcca9558af3460d8960262, Client-RequestTS=1727053273990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.315 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f61b73dab3dcca9558af3460d8960262, Client-RequestTS=1727053273990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.424 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f61b73dab3dcca9558af3460d8960262, Client-RequestTS=1727053273990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.424 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1ba6b6628bd9ea43481d77eb2a1c2a87, Client-RequestTS=1727053274489, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.708 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1ba6b6628bd9ea43481d77eb2a1c2a87, Client-RequestTS=1727053274489, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.817 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1ba6b6628bd9ea43481d77eb2a1c2a87, Client-RequestTS=1727053274489, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.864 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 567700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5945cb9b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:14.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=1ba6b6628bd9ea43481d77eb2a1c2a87, Client-RequestTS=1727053274489, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:14.927 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.098 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f715a3e19b5c262c262a5ec1a83a9212, Client-RequestTS=1727053274989, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.206 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f715a3e19b5c262c262a5ec1a83a9212, Client-RequestTS=1727053274989, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.315 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f715a3e19b5c262c262a5ec1a83a9212, Client-RequestTS=1727053274989, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.379 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 730000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3b708e48[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f715a3e19b5c262c262a5ec1a83a9212, Client-RequestTS=1727053274989, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:15.599 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3484e8a3663901568916809e93f4c3e, Client-RequestTS=1727053275490, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.708 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3484e8a3663901568916809e93f4c3e, Client-RequestTS=1727053275490, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.817 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3484e8a3663901568916809e93f4c3e, Client-RequestTS=1727053275490, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f3484e8a3663901568916809e93f4c3e, Client-RequestTS=1727053275490, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:15.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2190999a9b542876ae4c8d2b21c0071, Client-RequestTS=1727053275990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.209 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2190999a9b542876ae4c8d2b21c0071, Client-RequestTS=1727053275990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.319 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2190999a9b542876ae4c8d2b21c0071, Client-RequestTS=1727053275990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2190999a9b542876ae4c8d2b21c0071, Client-RequestTS=1727053275990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:16.603 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b319c4b35ae249e590d2bdc00d2510, Client-RequestTS=1727053276492, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.711 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b319c4b35ae249e590d2bdc00d2510, Client-RequestTS=1727053276492, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.819 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b319c4b35ae249e590d2bdc00d2510, Client-RequestTS=1727053276492, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74b319c4b35ae249e590d2bdc00d2510, Client-RequestTS=1727053276492, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:16.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.099 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=230cca0807d24debd18603fc057fcdca, Client-RequestTS=1727053276990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.207 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=230cca0807d24debd18603fc057fcdca, Client-RequestTS=1727053276990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.317 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=230cca0807d24debd18603fc057fcdca, Client-RequestTS=1727053276990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=230cca0807d24debd18603fc057fcdca, Client-RequestTS=1727053276990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.427 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:17.597 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b4cbb50e8e69ba0a215e698e5b546cd0, Client-RequestTS=1727053277488, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.706 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b4cbb50e8e69ba0a215e698e5b546cd0, Client-RequestTS=1727053277488, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.816 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b4cbb50e8e69ba0a215e698e5b546cd0, Client-RequestTS=1727053277488, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b4cbb50e8e69ba0a215e698e5b546cd0, Client-RequestTS=1727053277488, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:17.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.082 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 875000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4bb6e73e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.097 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=317eea4217e2ba23ed6ab04601efbab9, Client-RequestTS=1727053277990, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.205 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=317eea4217e2ba23ed6ab04601efbab9, Client-RequestTS=1727053277990, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.315 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=317eea4217e2ba23ed6ab04601efbab9, Client-RequestTS=1727053277990, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.426 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=317eea4217e2ba23ed6ab04601efbab9, Client-RequestTS=1727053277990, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.426 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.601 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f6d61ce0c8dc40795b6f1245c295cdf, Client-RequestTS=1727053278488, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.601 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 666900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@22ec8e75[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:18.711 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f6d61ce0c8dc40795b6f1245c295cdf, Client-RequestTS=1727053278488, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.820 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f6d61ce0c8dc40795b6f1245c295cdf, Client-RequestTS=1727053278488, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.931 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2f6d61ce0c8dc40795b6f1245c295cdf, Client-RequestTS=1727053278488, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:18.931 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac92b1ccafbca6f5824e4aee28c0e35, Client-RequestTS=1727053278996, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.217 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac92b1ccafbca6f5824e4aee28c0e35, Client-RequestTS=1727053278996, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac92b1ccafbca6f5824e4aee28c0e35, Client-RequestTS=1727053278996, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bac92b1ccafbca6f5824e4aee28c0e35, Client-RequestTS=1727053278996, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:19.609 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b90c1441c5395aad87794702daa2f612, Client-RequestTS=1727053279498, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.718 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b90c1441c5395aad87794702daa2f612, Client-RequestTS=1727053279498, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.825 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b90c1441c5395aad87794702daa2f612, Client-RequestTS=1727053279498, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.934 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b90c1441c5395aad87794702daa2f612, Client-RequestTS=1727053279498, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:19.934 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:20.109 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a18c26616a10fdca0d97bc0057ae074, Client-RequestTS=1727053279998, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.218 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a18c26616a10fdca0d97bc0057ae074, Client-RequestTS=1727053279998, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.326 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a18c26616a10fdca0d97bc0057ae074, Client-RequestTS=1727053279998, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a18c26616a10fdca0d97bc0057ae074, Client-RequestTS=1727053279998, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.435 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:20.608 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e24c69ec14b9a6bec9cddad1163a669d, Client-RequestTS=1727053280500, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.717 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e24c69ec14b9a6bec9cddad1163a669d, Client-RequestTS=1727053280500, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.826 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e24c69ec14b9a6bec9cddad1163a669d, Client-RequestTS=1727053280500, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.935 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e24c69ec14b9a6bec9cddad1163a669d, Client-RequestTS=1727053280500, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:20.935 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.108 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=73ee99b28d8af2550f5b0bca5e18f7f9, Client-RequestTS=1727053280999, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.215 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=73ee99b28d8af2550f5b0bca5e18f7f9, Client-RequestTS=1727053280999, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.325 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=73ee99b28d8af2550f5b0bca5e18f7f9, Client-RequestTS=1727053280999, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.403 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 224800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@640fc2a9[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=73ee99b28d8af2550f5b0bca5e18f7f9, Client-RequestTS=1727053280999, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.606 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=05bf53eee270b2f5b7bc4a3b3b4fdfc3, Client-RequestTS=1727053281497, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.715 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=05bf53eee270b2f5b7bc4a3b3b4fdfc3, Client-RequestTS=1727053281497, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.826 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=05bf53eee270b2f5b7bc4a3b3b4fdfc3, Client-RequestTS=1727053281497, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.918 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 621600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@162a3927[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:21.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=05bf53eee270b2f5b7bc4a3b3b4fdfc3, Client-RequestTS=1727053281497, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:21.933 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:22.104 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18bc0fd4a24463a1515596c9a10a3100, Client-RequestTS=1727053281995, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.212 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18bc0fd4a24463a1515596c9a10a3100, Client-RequestTS=1727053281995, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.321 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18bc0fd4a24463a1515596c9a10a3100, Client-RequestTS=1727053281995, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18bc0fd4a24463a1515596c9a10a3100, Client-RequestTS=1727053281995, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:22.601 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3950895a04532d0ed0f95d625e4650e3, Client-RequestTS=1727053282493, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.709 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3950895a04532d0ed0f95d625e4650e3, Client-RequestTS=1727053282493, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.818 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3950895a04532d0ed0f95d625e4650e3, Client-RequestTS=1727053282493, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3950895a04532d0ed0f95d625e4650e3, Client-RequestTS=1727053282493, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:22.929 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:23.101 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de69a04a06442d1fda6485e0cc96e10f, Client-RequestTS=1727053282991, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.210 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de69a04a06442d1fda6485e0cc96e10f, Client-RequestTS=1727053282991, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.321 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de69a04a06442d1fda6485e0cc96e10f, Client-RequestTS=1727053282991, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=de69a04a06442d1fda6485e0cc96e10f, Client-RequestTS=1727053282991, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.433 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:23.604 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22bd2154e1f3c8175f30531122c1210c, Client-RequestTS=1727053283494, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.714 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22bd2154e1f3c8175f30531122c1210c, Client-RequestTS=1727053283494, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.823 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22bd2154e1f3c8175f30531122c1210c, Client-RequestTS=1727053283494, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.931 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22bd2154e1f3c8175f30531122c1210c, Client-RequestTS=1727053283494, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:23.931 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:24.101 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0eb7223b284b44e7b9ab950b949081ed, Client-RequestTS=1727053283994, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.211 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0eb7223b284b44e7b9ab950b949081ed, Client-RequestTS=1727053283994, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.320 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0eb7223b284b44e7b9ab950b949081ed, Client-RequestTS=1727053283994, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=0eb7223b284b44e7b9ab950b949081ed, Client-RequestTS=1727053283994, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.430 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:24.602 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=663b5125979de24bc98f593e794287e9, Client-RequestTS=1727053284493, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.709 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=663b5125979de24bc98f593e794287e9, Client-RequestTS=1727053284493, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.819 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=663b5125979de24bc98f593e794287e9, Client-RequestTS=1727053284493, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.819 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 5100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7bcb7334[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:24.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=663b5125979de24bc98f593e794287e9, Client-RequestTS=1727053284493, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:24.928 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:25.097 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fcf37cb5195a420affbbd460d9b5d6d, Client-RequestTS=1727053284989, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.206 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fcf37cb5195a420affbbd460d9b5d6d, Client-RequestTS=1727053284989, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.317 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fcf37cb5195a420affbbd460d9b5d6d, Client-RequestTS=1727053284989, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.332 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 770700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@400ec3af[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:25.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fcf37cb5195a420affbbd460d9b5d6d, Client-RequestTS=1727053284989, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:25.598 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d90c6d9a9e9f7547635f67de017dadd7, Client-RequestTS=1727053285489, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.706 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d90c6d9a9e9f7547635f67de017dadd7, Client-RequestTS=1727053285489, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.816 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d90c6d9a9e9f7547635f67de017dadd7, Client-RequestTS=1727053285489, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=d90c6d9a9e9f7547635f67de017dadd7, Client-RequestTS=1727053285489, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:25.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:26.095 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=193c6ad9127c2bd4afdeb7fce17f2110, Client-RequestTS=1727053285985, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.205 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=193c6ad9127c2bd4afdeb7fce17f2110, Client-RequestTS=1727053285985, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.314 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=193c6ad9127c2bd4afdeb7fce17f2110, Client-RequestTS=1727053285985, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=193c6ad9127c2bd4afdeb7fce17f2110, Client-RequestTS=1727053285985, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.425 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:26.596 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f92662c2bf42889660b80c496282fc8f, Client-RequestTS=1727053286488, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.706 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f92662c2bf42889660b80c496282fc8f, Client-RequestTS=1727053286488, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.800 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.815 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f92662c2bf42889660b80c496282fc8f, Client-RequestTS=1727053286488, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.909 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.924 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f92662c2bf42889660b80c496282fc8f, Client-RequestTS=1727053286488, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:26.924 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:27.015 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd8c9c7dc838ecdb01eadb33066e8079, Client-RequestTS=1727053286985, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.125 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.125 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:27.202 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd8c9c7dc838ecdb01eadb33066e8079, Client-RequestTS=1727053286985, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.311 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd8c9c7dc838ecdb01eadb33066e8079, Client-RequestTS=1727053286985, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.421 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=dd8c9c7dc838ecdb01eadb33066e8079, Client-RequestTS=1727053286985, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.421 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:27.593 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0ca33a7bf94bfde47bf78bebd1d19bc, Client-RequestTS=1727053287484, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.703 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0ca33a7bf94bfde47bf78bebd1d19bc, Client-RequestTS=1727053287484, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.814 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0ca33a7bf94bfde47bf78bebd1d19bc, Client-RequestTS=1727053287484, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c0ca33a7bf94bfde47bf78bebd1d19bc, Client-RequestTS=1727053287484, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:27.923 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:28.094 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d45afe0f20f7a430d3c160b4664380, Client-RequestTS=1727053287985, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.204 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d45afe0f20f7a430d3c160b4664380, Client-RequestTS=1727053287985, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.312 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d45afe0f20f7a430d3c160b4664380, Client-RequestTS=1727053287985, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.342 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 228200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@209de672[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:28.421 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=78d45afe0f20f7a430d3c160b4664380, Client-RequestTS=1727053287985, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.422 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:28.593 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66a2227517f6f9723ac7ed84bc70dc47, Client-RequestTS=1727053288484, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.702 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66a2227517f6f9723ac7ed84bc70dc47, Client-RequestTS=1727053288484, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.813 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66a2227517f6f9723ac7ed84bc70dc47, Client-RequestTS=1727053288484, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.860 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 543100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@683309ae[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:28.922 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=66a2227517f6f9723ac7ed84bc70dc47, Client-RequestTS=1727053288484, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:28.922 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:29.091 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5d8ac8a5d5eb7f7332fbe54e076749e, Client-RequestTS=1727053288983, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.201 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5d8ac8a5d5eb7f7332fbe54e076749e, Client-RequestTS=1727053288983, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.310 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5d8ac8a5d5eb7f7332fbe54e076749e, Client-RequestTS=1727053288983, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.419 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a5d8ac8a5d5eb7f7332fbe54e076749e, Client-RequestTS=1727053288983, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.419 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:29.589 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0cb11ac42a514bdda9438715f79eceb, Client-RequestTS=1727053289481, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0cb11ac42a514bdda9438715f79eceb, Client-RequestTS=1727053289481, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.809 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0cb11ac42a514bdda9438715f79eceb, Client-RequestTS=1727053289481, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e0cb11ac42a514bdda9438715f79eceb, Client-RequestTS=1727053289481, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:29.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:30.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.198 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.308 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=62be82794d946c7a7819328dad2c09fd, Client-RequestTS=1727053289980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:30.588 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f956eae4849e04c445978f33b9526d0, Client-RequestTS=1727053290477, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.697 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f956eae4849e04c445978f33b9526d0, Client-RequestTS=1727053290477, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f956eae4849e04c445978f33b9526d0, Client-RequestTS=1727053290477, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4f956eae4849e04c445978f33b9526d0, Client-RequestTS=1727053290477, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:30.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:31.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=293f63c4d079464534281c8500740fd1, Client-RequestTS=1727053290980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=293f63c4d079464534281c8500740fd1, Client-RequestTS=1727053290980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.308 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=293f63c4d079464534281c8500740fd1, Client-RequestTS=1727053290980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=293f63c4d079464534281c8500740fd1, Client-RequestTS=1727053290980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.417 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:31.591 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ee124321dc6e9269e48bf3f22aed433, Client-RequestTS=1727053291481, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.699 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ee124321dc6e9269e48bf3f22aed433, Client-RequestTS=1727053291481, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.810 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ee124321dc6e9269e48bf3f22aed433, Client-RequestTS=1727053291481, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.918 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ee124321dc6e9269e48bf3f22aed433, Client-RequestTS=1727053291481, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:31.918 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:31.965 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 624400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2f33d397[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:32.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=75fd3aa2a811a229b7163763f9833a14, Client-RequestTS=1727053291980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=75fd3aa2a811a229b7163763f9833a14, Client-RequestTS=1727053291980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.306 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=75fd3aa2a811a229b7163763f9833a14, Client-RequestTS=1727053291980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.416 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=75fd3aa2a811a229b7163763f9833a14, Client-RequestTS=1727053291980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.416 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:32.478 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 316100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2bd1d18a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:32.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9dd2851bd516f4da0744147d137fe591, Client-RequestTS=1727053292478, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.698 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9dd2851bd516f4da0744147d137fe591, Client-RequestTS=1727053292478, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9dd2851bd516f4da0744147d137fe591, Client-RequestTS=1727053292478, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9dd2851bd516f4da0744147d137fe591, Client-RequestTS=1727053292478, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:32.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:33.089 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7b80849e5a7a1eb695bdbac6549b14d, Client-RequestTS=1727053292980, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.198 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7b80849e5a7a1eb695bdbac6549b14d, Client-RequestTS=1727053292980, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.307 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7b80849e5a7a1eb695bdbac6549b14d, Client-RequestTS=1727053292980, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.415 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f7b80849e5a7a1eb695bdbac6549b14d, Client-RequestTS=1727053292980, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.415 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:33.587 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7bdb68a7b767137f8f324bb8071cce47, Client-RequestTS=1727053293478, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.696 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7bdb68a7b767137f8f324bb8071cce47, Client-RequestTS=1727053293478, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.804 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7bdb68a7b767137f8f324bb8071cce47, Client-RequestTS=1727053293478, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7bdb68a7b767137f8f324bb8071cce47, Client-RequestTS=1727053293478, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:33.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:34.085 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a2882279954c674e0b946e55302a4d6, Client-RequestTS=1727053293974, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.194 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a2882279954c674e0b946e55302a4d6, Client-RequestTS=1727053293974, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.304 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a2882279954c674e0b946e55302a4d6, Client-RequestTS=1727053293974, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.412 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4a2882279954c674e0b946e55302a4d6, Client-RequestTS=1727053293974, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.412 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:34.585 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc8df09d58225935b2519a762d7ef169, Client-RequestTS=1727053294474, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.694 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc8df09d58225935b2519a762d7ef169, Client-RequestTS=1727053294474, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.804 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc8df09d58225935b2519a762d7ef169, Client-RequestTS=1727053294474, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cc8df09d58225935b2519a762d7ef169, Client-RequestTS=1727053294474, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:34.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:35.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e66760bc9945031e90a3b3f377ea17ed, Client-RequestTS=1727053294977, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.193 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e66760bc9945031e90a3b3f377ea17ed, Client-RequestTS=1727053294977, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.305 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e66760bc9945031e90a3b3f377ea17ed, Client-RequestTS=1727053294977, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e66760bc9945031e90a3b3f377ea17ed, Client-RequestTS=1727053294977, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.414 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:35.588 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eadd37186c874a6509263c792c36d0d0, Client-RequestTS=1727053295476, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.682 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 152600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7907273e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:35.698 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eadd37186c874a6509263c792c36d0d0, Client-RequestTS=1727053295476, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.807 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eadd37186c874a6509263c792c36d0d0, Client-RequestTS=1727053295476, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=eadd37186c874a6509263c792c36d0d0, Client-RequestTS=1727053295476, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:35.916 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:36.088 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba6ccf318c0dced518e74cd267eb5f0f, Client-RequestTS=1727053295977, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:36.197 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba6ccf318c0dced518e74cd267eb5f0f, Client-RequestTS=1727053295977, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:36.197 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 944600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@16009b1e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:36.307 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba6ccf318c0dced518e74cd267eb5f0f, Client-RequestTS=1727053295977, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:36.418 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ba6ccf318c0dced518e74cd267eb5f0f, Client-RequestTS=1727053295977, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:36.418 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:36.590 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42b06eb743874439472f8f04b6319f68, Client-RequestTS=1727053296480, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:36.701 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42b06eb743874439472f8f04b6319f68, Client-RequestTS=1727053296480, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:36.808 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42b06eb743874439472f8f04b6319f68, Client-RequestTS=1727053296480, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:36.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=42b06eb743874439472f8f04b6319f68, Client-RequestTS=1727053296480, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:36.917 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:37.087 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c2f18bfe169d6bd3ad4839bd67743d68, Client-RequestTS=1727053296978, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:37.195 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c2f18bfe169d6bd3ad4839bd67743d68, Client-RequestTS=1727053296978, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:37.304 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c2f18bfe169d6bd3ad4839bd67743d68, Client-RequestTS=1727053296978, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:37.413 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c2f18bfe169d6bd3ad4839bd67743d68, Client-RequestTS=1727053296978, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:37.413 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:37.584 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b10f496d424f708563b811e297d2ec8d, Client-RequestTS=1727053297475, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:37.695 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b10f496d424f708563b811e297d2ec8d, Client-RequestTS=1727053297475, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:37.805 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b10f496d424f708563b811e297d2ec8d, Client-RequestTS=1727053297475, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:37.913 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b10f496d424f708563b811e297d2ec8d, Client-RequestTS=1727053297475, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:37.913 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:38.084 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56c4c736a56dcac3016b25ad6d62dbdb, Client-RequestTS=1727053297975, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:38.194 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56c4c736a56dcac3016b25ad6d62dbdb, Client-RequestTS=1727053297975, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:38.303 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56c4c736a56dcac3016b25ad6d62dbdb, Client-RequestTS=1727053297975, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:38.412 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=56c4c736a56dcac3016b25ad6d62dbdb, Client-RequestTS=1727053297975, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:38.412 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:38.585 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca10199dff43db38c248d868d728b7b3, Client-RequestTS=1727053298475, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:38.696 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca10199dff43db38c248d868d728b7b3, Client-RequestTS=1727053298475, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:38.804 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca10199dff43db38c248d868d728b7b3, Client-RequestTS=1727053298475, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:38.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=ca10199dff43db38c248d868d728b7b3, Client-RequestTS=1727053298475, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:38.912 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:39.083 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e26901bcf5f01e7c61765ae3e24e30a, Client-RequestTS=1727053298974, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:39.191 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e26901bcf5f01e7c61765ae3e24e30a, Client-RequestTS=1727053298974, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:39.301 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e26901bcf5f01e7c61765ae3e24e30a, Client-RequestTS=1727053298974, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:39.411 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3e26901bcf5f01e7c61765ae3e24e30a, Client-RequestTS=1727053298974, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:39.411 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:39.503 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 76900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3032f13c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:39.581 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5685bfc41d7f6d94bf4db2fee4bdd2ec, Client-RequestTS=1727053299472, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:39.691 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5685bfc41d7f6d94bf4db2fee4bdd2ec, Client-RequestTS=1727053299472, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:39.802 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5685bfc41d7f6d94bf4db2fee4bdd2ec, Client-RequestTS=1727053299472, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:39.910 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=5685bfc41d7f6d94bf4db2fee4bdd2ec, Client-RequestTS=1727053299472, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:39.910 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:40.018 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 989600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1a8a9bc0[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:40.080 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=24639adcca0f7085c54d12d787e97694, Client-RequestTS=1727053299971, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:40.190 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=24639adcca0f7085c54d12d787e97694, Client-RequestTS=1727053299971, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:40.297 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=24639adcca0f7085c54d12d787e97694, Client-RequestTS=1727053299971, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:40.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=24639adcca0f7085c54d12d787e97694, Client-RequestTS=1727053299971, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:40.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:40.576 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a33ea51b387c5d8334e7201b2374f25f, Client-RequestTS=1727053300467, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:40.686 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a33ea51b387c5d8334e7201b2374f25f, Client-RequestTS=1727053300467, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:40.794 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a33ea51b387c5d8334e7201b2374f25f, Client-RequestTS=1727053300467, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:40.904 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a33ea51b387c5d8334e7201b2374f25f, Client-RequestTS=1727053300467, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:40.904 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:41.077 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c419c958a5da302e21fa11f4125f6bed, Client-RequestTS=1727053300967, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:41.184 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c419c958a5da302e21fa11f4125f6bed, Client-RequestTS=1727053300967, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:41.294 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c419c958a5da302e21fa11f4125f6bed, Client-RequestTS=1727053300967, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:41.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c419c958a5da302e21fa11f4125f6bed, Client-RequestTS=1727053300967, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:41.405 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:41.577 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2bc1f86cf1094f574c87503abadb7cd, Client-RequestTS=1727053301467, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:41.686 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2bc1f86cf1094f574c87503abadb7cd, Client-RequestTS=1727053301467, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:41.797 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2bc1f86cf1094f574c87503abadb7cd, Client-RequestTS=1727053301467, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:41.904 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2bc1f86cf1094f574c87503abadb7cd, Client-RequestTS=1727053301467, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:41.904 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:42.076 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=147669eb958db22c8718e54693053b3e, Client-RequestTS=1727053301966, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:42.183 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=147669eb958db22c8718e54693053b3e, Client-RequestTS=1727053301966, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:42.294 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=147669eb958db22c8718e54693053b3e, Client-RequestTS=1727053301966, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:42.403 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=147669eb958db22c8718e54693053b3e, Client-RequestTS=1727053301966, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:42.403 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:42.573 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbe75cf6c23625ab64377207d2456874, Client-RequestTS=1727053302465, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:42.683 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbe75cf6c23625ab64377207d2456874, Client-RequestTS=1727053302465, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:42.791 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbe75cf6c23625ab64377207d2456874, Client-RequestTS=1727053302465, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:42.898 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=fbe75cf6c23625ab64377207d2456874, Client-RequestTS=1727053302465, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:42.898 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:43.072 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=43d7b761b27b66b63b6489f4bd402715, Client-RequestTS=1727053302961, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:43.181 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=43d7b761b27b66b63b6489f4bd402715, Client-RequestTS=1727053302961, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:43.290 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=43d7b761b27b66b63b6489f4bd402715, Client-RequestTS=1727053302961, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:43.398 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=43d7b761b27b66b63b6489f4bd402715, Client-RequestTS=1727053302961, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:43.398 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:43.414 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 636000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@20db827c[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:43.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6527325b10c149a9353cb775ae3b917a, Client-RequestTS=1727053303462, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:43.678 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6527325b10c149a9353cb775ae3b917a, Client-RequestTS=1727053303462, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:43.788 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6527325b10c149a9353cb775ae3b917a, Client-RequestTS=1727053303462, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:43.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6527325b10c149a9353cb775ae3b917a, Client-RequestTS=1727053303462, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:43.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:43.929 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 137800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@44ead2c1[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:44.069 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=180bab22a098a553c8f989b180951e17, Client-RequestTS=1727053303960, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:44.180 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=180bab22a098a553c8f989b180951e17, Client-RequestTS=1727053303960, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:44.289 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=180bab22a098a553c8f989b180951e17, Client-RequestTS=1727053303960, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:44.397 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=180bab22a098a553c8f989b180951e17, Client-RequestTS=1727053303960, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:44.397 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:44.569 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=894d670fe31dff6ab4ccacfdb65d23ba, Client-RequestTS=1727053304459, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:44.678 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=894d670fe31dff6ab4ccacfdb65d23ba, Client-RequestTS=1727053304459, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:44.787 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=894d670fe31dff6ab4ccacfdb65d23ba, Client-RequestTS=1727053304459, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:44.896 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=894d670fe31dff6ab4ccacfdb65d23ba, Client-RequestTS=1727053304459, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:44.896 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:45.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db90094cc3e04f55302cf6f55a10e2b2, Client-RequestTS=1727053304958, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:45.178 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db90094cc3e04f55302cf6f55a10e2b2, Client-RequestTS=1727053304958, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:45.289 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db90094cc3e04f55302cf6f55a10e2b2, Client-RequestTS=1727053304958, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:45.398 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=db90094cc3e04f55302cf6f55a10e2b2, Client-RequestTS=1727053304958, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:45.398 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:45.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4d72e5639ed353c838d62f32cb2e2117, Client-RequestTS=1727053305459, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:45.678 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4d72e5639ed353c838d62f32cb2e2117, Client-RequestTS=1727053305459, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:45.787 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4d72e5639ed353c838d62f32cb2e2117, Client-RequestTS=1727053305459, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:45.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=4d72e5639ed353c838d62f32cb2e2117, Client-RequestTS=1727053305459, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:45.897 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:46.068 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1a1c5ceb18fdd783cf1cbb3ccb02780, Client-RequestTS=1727053305958, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:46.175 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1a1c5ceb18fdd783cf1cbb3ccb02780, Client-RequestTS=1727053305958, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:46.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1a1c5ceb18fdd783cf1cbb3ccb02780, Client-RequestTS=1727053305958, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:46.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e1a1c5ceb18fdd783cf1cbb3ccb02780, Client-RequestTS=1727053305958, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:46.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:46.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e24ba99f937b13d058e56f000d083d9, Client-RequestTS=1727053306458, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:46.676 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e24ba99f937b13d058e56f000d083d9, Client-RequestTS=1727053306458, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:46.787 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e24ba99f937b13d058e56f000d083d9, Client-RequestTS=1727053306458, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:46.899 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e24ba99f937b13d058e56f000d083d9, Client-RequestTS=1727053306458, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:46.899 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:47.070 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e573273984686178e38f7b28e7707716, Client-RequestTS=1727053306960, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:47.179 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e573273984686178e38f7b28e7707716, Client-RequestTS=1727053306960, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:47.286 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e573273984686178e38f7b28e7707716, Client-RequestTS=1727053306960, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:47.396 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e573273984686178e38f7b28e7707716, Client-RequestTS=1727053306960, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:47.396 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:47.443 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 827600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@32cc06fb[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:47.570 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74469715a9183c8bd451dd014b33c737, Client-RequestTS=1727053307459, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:47.680 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74469715a9183c8bd451dd014b33c737, Client-RequestTS=1727053307459, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:47.789 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74469715a9183c8bd451dd014b33c737, Client-RequestTS=1727053307459, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:47.896 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=74469715a9183c8bd451dd014b33c737, Client-RequestTS=1727053307459, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:47.896 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:47.958 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 420000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d52601[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:48.066 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e30dd5d210ccb2aceba13f3b2ee0317, Client-RequestTS=1727053307958, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:48.175 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e30dd5d210ccb2aceba13f3b2ee0317, Client-RequestTS=1727053307958, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:48.285 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e30dd5d210ccb2aceba13f3b2ee0317, Client-RequestTS=1727053307958, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:48.393 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8e30dd5d210ccb2aceba13f3b2ee0317, Client-RequestTS=1727053307958, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:48.393 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:48.565 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=359a343ae41e2572aa640bd91349aa8d, Client-RequestTS=1727053308457, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:48.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=359a343ae41e2572aa640bd91349aa8d, Client-RequestTS=1727053308457, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:48.783 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=359a343ae41e2572aa640bd91349aa8d, Client-RequestTS=1727053308457, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:48.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=359a343ae41e2572aa640bd91349aa8d, Client-RequestTS=1727053308457, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:48.893 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:49.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ced41e83cf3737176ea30c812ec0a07, Client-RequestTS=1727053308956, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:49.172 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ced41e83cf3737176ea30c812ec0a07, Client-RequestTS=1727053308956, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:49.280 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ced41e83cf3737176ea30c812ec0a07, Client-RequestTS=1727053308956, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:49.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=9ced41e83cf3737176ea30c812ec0a07, Client-RequestTS=1727053308956, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:49.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:49.561 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=19445d778e5691b7bb15351089b809e4, Client-RequestTS=1727053309452, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:49.670 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=19445d778e5691b7bb15351089b809e4, Client-RequestTS=1727053309452, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:49.780 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=19445d778e5691b7bb15351089b809e4, Client-RequestTS=1727053309452, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:49.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=19445d778e5691b7bb15351089b809e4, Client-RequestTS=1727053309452, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:49.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:50.047 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a363560e999f6d5ec5ecfe47fd4f20c2, Client-RequestTS=1727053309942, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:50.156 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a363560e999f6d5ec5ecfe47fd4f20c2, Client-RequestTS=1727053309942, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:50.266 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a363560e999f6d5ec5ecfe47fd4f20c2, Client-RequestTS=1727053309942, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:50.373 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a363560e999f6d5ec5ecfe47fd4f20c2, Client-RequestTS=1727053309942, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:50.373 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:50.547 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=77ec8f8c7fd575a604a1a7e3a948f3b4, Client-RequestTS=1727053310435, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:50.655 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=77ec8f8c7fd575a604a1a7e3a948f3b4, Client-RequestTS=1727053310435, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:50.763 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=77ec8f8c7fd575a604a1a7e3a948f3b4, Client-RequestTS=1727053310435, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:50.874 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=77ec8f8c7fd575a604a1a7e3a948f3b4, Client-RequestTS=1727053310435, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:50.874 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:51.046 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fbc0222bbb6bad85366f6b675e2fbcd, Client-RequestTS=1727053310936, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:51.155 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fbc0222bbb6bad85366f6b675e2fbcd, Client-RequestTS=1727053310936, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:51.264 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fbc0222bbb6bad85366f6b675e2fbcd, Client-RequestTS=1727053310936, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:51.373 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=3fbc0222bbb6bad85366f6b675e2fbcd, Client-RequestTS=1727053310936, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:51.373 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:51.543 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6729596a7acf82ed30ad19d1d589df6, Client-RequestTS=1727053311435, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:51.652 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6729596a7acf82ed30ad19d1d589df6, Client-RequestTS=1727053311435, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:51.761 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6729596a7acf82ed30ad19d1d589df6, Client-RequestTS=1727053311435, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:51.870 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b6729596a7acf82ed30ad19d1d589df6, Client-RequestTS=1727053311435, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:51.870 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:52.043 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6c0c11c069b93d88f4ee1b80995bb23, Client-RequestTS=1727053311934, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:52.154 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6c0c11c069b93d88f4ee1b80995bb23, Client-RequestTS=1727053311934, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:52.265 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6c0c11c069b93d88f4ee1b80995bb23, Client-RequestTS=1727053311934, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:52.372 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f6c0c11c069b93d88f4ee1b80995bb23, Client-RequestTS=1727053311934, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:52.372 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:52.542 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8a68eea08ec2e38e76204f2203b07c9, Client-RequestTS=1727053312435, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:52.652 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8a68eea08ec2e38e76204f2203b07c9, Client-RequestTS=1727053312435, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:52.760 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8a68eea08ec2e38e76204f2203b07c9, Client-RequestTS=1727053312435, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:52.869 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8a68eea08ec2e38e76204f2203b07c9, Client-RequestTS=1727053312435, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:52.869 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:53.042 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2e79b0fa2c7454192703e21562def1f, Client-RequestTS=1727053312931, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:53.152 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2e79b0fa2c7454192703e21562def1f, Client-RequestTS=1727053312931, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:53.261 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2e79b0fa2c7454192703e21562def1f, Client-RequestTS=1727053312931, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:53.369 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e2e79b0fa2c7454192703e21562def1f, Client-RequestTS=1727053312931, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:53.369 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:53.543 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8581093624893817178d9548fc4079d, Client-RequestTS=1727053313433, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:53.652 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8581093624893817178d9548fc4079d, Client-RequestTS=1727053313433, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:53.760 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8581093624893817178d9548fc4079d, Client-RequestTS=1727053313433, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:53.870 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=b8581093624893817178d9548fc4079d, Client-RequestTS=1727053313433, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:53.870 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:54.042 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6c9d6cb0a43167119e3877bf90f0f5f8, Client-RequestTS=1727053313931, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:54.150 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6c9d6cb0a43167119e3877bf90f0f5f8, Client-RequestTS=1727053313931, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:54.260 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6c9d6cb0a43167119e3877bf90f0f5f8, Client-RequestTS=1727053313931, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:54.369 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6c9d6cb0a43167119e3877bf90f0f5f8, Client-RequestTS=1727053313931, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:54.369 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:01:54.539 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8b38cbef63702d9fd1cd02d465bc73c0, Client-RequestTS=1727053314431, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:01:54.647 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8b38cbef63702d9fd1cd02d465bc73c0, Client-RequestTS=1727053314431, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:01:54.755 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8b38cbef63702d9fd1cd02d465bc73c0, Client-RequestTS=1727053314431, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:01:54.865 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8b38cbef63702d9fd1cd02d465bc73c0, Client-RequestTS=1727053314431, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:01:54.865 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:01.193 [http-nio-9101-exec-7] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 83100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@302a54c1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:02:01.193 [http-nio-9101-exec-7] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 83100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@302a54c1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) @@ -2863,7 +2857,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor81.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor57.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -2871,7 +2865,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor56.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -3021,16 +3015,70 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 19 milliseconds, 398801 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@58de9337[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 83100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@302a54c1[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 183 common frames omitted -19:30:34.391 [http-nio-9101-exec-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=AUTH_DISABLED, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 636899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4d172ea7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] -19:30:34.391 [http-nio-9101-exec-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. -com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 636899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4d172ea7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] - at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) - at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) +09:02:16.704 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 12 milliseconds, 435600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@48e56991[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:19.822 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 398000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@13dff308[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:23.038 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 704200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@214914f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:26.363 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 130600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5d114e31[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:28.299 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.409 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.518 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.628 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:28.628 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) @@ -3040,7 +3088,55 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) - at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:29.641 [http-nio-9101-exec-8] ERROR c.a.n.client.naming - [callServer,447] - [NA] failed to request +java.net.SocketTimeoutException: Connect timed out + at java.base/sun.nio.ch.NioSocketImpl.timedFinishConnect(NioSocketImpl.java:551) + at java.base/sun.nio.ch.NioSocketImpl.connect(NioSocketImpl.java:602) + at java.base/java.net.Socket.connect(Socket.java:633) + at java.base/sun.net.NetworkClient.doConnect(NetworkClient.java:178) + at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:534) + at java.base/sun.net.www.http.HttpClient.openServer(HttpClient.java:639) + at java.base/sun.net.www.http.HttpClient.(HttpClient.java:282) + at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:387) + at java.base/sun.net.www.http.HttpClient.New(HttpClient.java:409) + at java.base/sun.net.www.protocol.http.HttpURLConnection.getNewHttpClient(HttpURLConnection.java:1309) + at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect0(HttpURLConnection.java:1242) + at java.base/sun.net.www.protocol.http.HttpURLConnection.plainConnect(HttpURLConnection.java:1128) + at java.base/sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:1057) + at com.alibaba.nacos.common.http.client.request.JdkHttpClientRequest.execute(JdkHttpClientRequest.java:114) + at com.alibaba.nacos.common.http.client.NacosRestTemplate.execute(NacosRestTemplate.java:482) + at com.alibaba.nacos.common.http.client.NacosRestTemplate.exchangeForm(NacosRestTemplate.java:427) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.callServer(NamingHttpClientProxy.java:429) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:364) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:335) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.reqApi(NamingHttpClientProxy.java:330) + at com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy.serverHealthy(NamingHttpClientProxy.java:272) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.serverHealthy(NamingClientProxyDelegate.java:191) + at com.alibaba.nacos.client.naming.NacosNamingService.getServerStatus(NacosNamingService.java:480) + at com.alibaba.cloud.nacos.discovery.actuate.health.NacosDiscoveryHealthIndicator.doHealthCheck(NacosDiscoveryHealthIndicator.java:62) + at org.springframework.boot.actuate.health.AbstractHealthIndicator.health(AbstractHealthIndicator.java:82) at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) @@ -3048,13 +3144,11 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) - at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) - at jdk.internal.reflect.GeneratedMethodAccessor81.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor57.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) @@ -3062,7 +3156,7 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) - at jdk.internal.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) + at jdk.internal.reflect.GeneratedMethodAccessor56.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:568) at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) @@ -3212,104 +3306,1542 @@ com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutExce at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) - at java.base/java.lang.Thread.run(Thread.java:833) -Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 636899 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4d172ea7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5e02916e, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@7928b9e1, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@12e90c8a}}}]] + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:29.781 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 534800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6e8051fc[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:31.302 [http-nio-9101-exec-8] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.403 [http-nio-9101-exec-8] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.505 [http-nio-9101-exec-8] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.606 [http-nio-9101-exec-8] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:02:31.606 [http-nio-9101-exec-8] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor57.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor56.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:76) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) + at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) + at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) + at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) + at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) + at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) + at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:181) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter.doFilterInternal(DefaultLogoutPageGeneratingFilter.java:58) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:189) + at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:175) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:227) + at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:221) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) + at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.csrf.CsrfFilter.doFilterInternal(CsrfFilter.java:117) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) + at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) + at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) + at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) + at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) + at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) + at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) + at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352) + at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:33.311 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 15 milliseconds, 75100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5a957a7f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.926 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 717100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@520fa632[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:40.637 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 8 milliseconds, 898500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2a42ac69[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:44.461 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 395000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@440e902a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:51.155 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = InstanceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 978000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@68ab188f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:02:51.155 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForInstances,63] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 978000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@68ab188f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doRegisterService(NamingGrpcClientProxy.java:250) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.processRegisterRedoType(RedoScheduledTask.java:102) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstance(RedoScheduledTask.java:79) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForInstances(RedoScheduledTask.java:61) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:51) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 978000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@68ab188f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 14 common frames omitted +09:02:52.479 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 709000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5a1b4c6f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:55.598 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 112300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7030c93[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:58.803 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 386900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@11d19b46[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:01.094 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 83800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1ee9ef96[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:03:01.094 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 83800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1ee9ef96[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 83800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1ee9ef96[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 13 common frames omitted +09:03:01.641 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 911800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2006be2c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:03:01.641 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 911800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2006be2c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 911800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2006be2c[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 32 common frames omitted +09:03:02.125 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 180200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@22352bca[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:07.075 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=82f8178a4f2b1a890ce041680e45a64a, Client-RequestTS=1727053384065, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 461700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3721d502[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:03:07.075 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 461700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3721d502[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 461700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@3721d502[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:03:07.228 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48d38ce6512b468bfec3e55c2fee53d2, Client-RequestTS=1727053387126, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:07.341 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48d38ce6512b468bfec3e55c2fee53d2, Client-RequestTS=1727053387126, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:07.450 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48d38ce6512b468bfec3e55c2fee53d2, Client-RequestTS=1727053387126, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:07.558 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=48d38ce6512b468bfec3e55c2fee53d2, Client-RequestTS=1727053387126, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:07.558 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:07.728 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cb3196bf86a08983daf293a39c98bb26, Client-RequestTS=1727053387620, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:07.838 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cb3196bf86a08983daf293a39c98bb26, Client-RequestTS=1727053387620, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:07.947 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cb3196bf86a08983daf293a39c98bb26, Client-RequestTS=1727053387620, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:08.058 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=cb3196bf86a08983daf293a39c98bb26, Client-RequestTS=1727053387620, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:08.058 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:08.230 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=70cfb653b48314556e54f36630e27dea, Client-RequestTS=1727053388120, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:08.339 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=70cfb653b48314556e54f36630e27dea, Client-RequestTS=1727053388120, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:08.448 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=70cfb653b48314556e54f36630e27dea, Client-RequestTS=1727053388120, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:08.557 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=70cfb653b48314556e54f36630e27dea, Client-RequestTS=1727053388120, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:08.557 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:08.725 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2fc58303e5ddde993f1505dfcbb73d6f, Client-RequestTS=1727053388617, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:08.834 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2fc58303e5ddde993f1505dfcbb73d6f, Client-RequestTS=1727053388617, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:08.943 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2fc58303e5ddde993f1505dfcbb73d6f, Client-RequestTS=1727053388617, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:09.055 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2fc58303e5ddde993f1505dfcbb73d6f, Client-RequestTS=1727053388617, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:09.055 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:09.225 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f5978e37a9fe98ecc9b79ee77923c716, Client-RequestTS=1727053389118, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:09.336 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f5978e37a9fe98ecc9b79ee77923c716, Client-RequestTS=1727053389118, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:09.443 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f5978e37a9fe98ecc9b79ee77923c716, Client-RequestTS=1727053389118, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:09.551 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f5978e37a9fe98ecc9b79ee77923c716, Client-RequestTS=1727053389118, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:09.551 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:09.726 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f26cc8f97698c245f291238637e95160, Client-RequestTS=1727053389614, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:09.836 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f26cc8f97698c245f291238637e95160, Client-RequestTS=1727053389614, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:09.946 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f26cc8f97698c245f291238637e95160, Client-RequestTS=1727053389614, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:10.055 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f26cc8f97698c245f291238637e95160, Client-RequestTS=1727053389614, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:10.055 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:10.227 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=761528aff5046bb3043b0c4d3d271815, Client-RequestTS=1727053390117, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:10.335 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=761528aff5046bb3043b0c4d3d271815, Client-RequestTS=1727053390117, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:10.446 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=761528aff5046bb3043b0c4d3d271815, Client-RequestTS=1727053390117, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:10.558 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=761528aff5046bb3043b0c4d3d271815, Client-RequestTS=1727053390117, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:10.558 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:10.729 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a73077eb466833b6b75ec95bae5b825, Client-RequestTS=1727053390620, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:10.837 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a73077eb466833b6b75ec95bae5b825, Client-RequestTS=1727053390620, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:10.945 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a73077eb466833b6b75ec95bae5b825, Client-RequestTS=1727053390620, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:13.129 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = SubscribeServiceRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 324600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c28a7df[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:03:13.129 [com.alibaba.nacos.client.naming.grpc.redo.0] ERROR c.a.n.client.naming - [redoForSubscribes,110] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 324600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c28a7df[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.doSubscribe(NamingGrpcClientProxy.java:394) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribe(RedoScheduledTask.java:127) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.redoForSubscribes(RedoScheduledTask.java:108) + at com.alibaba.nacos.client.naming.remote.gprc.redo.RedoScheduledTask.run(RedoScheduledTask.java:52) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 324600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6c28a7df[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 13 common frames omitted +09:03:13.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=2a73077eb466833b6b75ec95bae5b825, Client-RequestTS=1727053390620, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 523400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4963bfd7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:03:13.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 523400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4963bfd7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 523400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4963bfd7[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:03:14.110 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a0798478c20d673dc3dee69bb5d83069, Client-RequestTS=1727053394009, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:14.210 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a0798478c20d673dc3dee69bb5d83069, Client-RequestTS=1727053394009, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:14.311 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a0798478c20d673dc3dee69bb5d83069, Client-RequestTS=1727053394009, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:14.413 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a0798478c20d673dc3dee69bb5d83069, Client-RequestTS=1727053394009, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:14.413 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:14.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9783b73018599271f9caf7d53e94a75, Client-RequestTS=1727053394463, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:14.676 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9783b73018599271f9caf7d53e94a75, Client-RequestTS=1727053394463, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:14.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9783b73018599271f9caf7d53e94a75, Client-RequestTS=1727053394463, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:14.895 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9783b73018599271f9caf7d53e94a75, Client-RequestTS=1727053394463, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:14.895 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:15.065 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c08cd5277eaf686e770cf688e2e3259a, Client-RequestTS=1727053394957, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:15.175 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c08cd5277eaf686e770cf688e2e3259a, Client-RequestTS=1727053394957, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:15.283 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c08cd5277eaf686e770cf688e2e3259a, Client-RequestTS=1727053394957, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:15.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=c08cd5277eaf686e770cf688e2e3259a, Client-RequestTS=1727053394957, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:15.395 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:15.567 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb30435172f41b75e509bb589cdb0007, Client-RequestTS=1727053395458, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:15.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb30435172f41b75e509bb589cdb0007, Client-RequestTS=1727053395458, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:15.784 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb30435172f41b75e509bb589cdb0007, Client-RequestTS=1727053395458, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:15.892 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=bb30435172f41b75e509bb589cdb0007, Client-RequestTS=1727053395458, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:15.892 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:16.064 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50276036452ecca839c5944bcb14ef79, Client-RequestTS=1727053395955, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:16.173 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50276036452ecca839c5944bcb14ef79, Client-RequestTS=1727053395955, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:16.283 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50276036452ecca839c5944bcb14ef79, Client-RequestTS=1727053395955, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:16.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=50276036452ecca839c5944bcb14ef79, Client-RequestTS=1727053395955, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:16.394 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:16.565 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=800d05adcece2e71486833918c5f132a, Client-RequestTS=1727053396458, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:16.674 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=800d05adcece2e71486833918c5f132a, Client-RequestTS=1727053396458, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:16.783 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=800d05adcece2e71486833918c5f132a, Client-RequestTS=1727053396458, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:16.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=800d05adcece2e71486833918c5f132a, Client-RequestTS=1727053396458, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:16.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:17.063 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8022680469eb5e85cf2c402bd0338671, Client-RequestTS=1727053396954, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:17.172 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8022680469eb5e85cf2c402bd0338671, Client-RequestTS=1727053396954, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:17.282 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8022680469eb5e85cf2c402bd0338671, Client-RequestTS=1727053396954, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:17.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=8022680469eb5e85cf2c402bd0338671, Client-RequestTS=1727053396954, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:17.390 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:17.562 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=613c87e0beb400b45ea26943c31350db, Client-RequestTS=1727053397453, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:03:17.673 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=613c87e0beb400b45ea26943c31350db, Client-RequestTS=1727053397453, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:03:17.782 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=613c87e0beb400b45ea26943c31350db, Client-RequestTS=1727053397453, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:03:17.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=613c87e0beb400b45ea26943c31350db, Client-RequestTS=1727053397453, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:03:17.891 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:03:18.062 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUwOH0.a5xhj6_8p248MvXfnGTQM3RQ_KqI5gLtiBbidj7mzv0, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=7a811974f4af9bcbed5cdb57d4f6ad82, Client-RequestTS=1727053397954, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:04:30.982 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 570200 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@1e933ec3[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:34.093 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 466700 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7ffbf55[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:37.303 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 7 milliseconds, 88900 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2cc31224[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:40.632 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 591600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7644b31b[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:44.056 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 14 milliseconds, 939600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2e98892e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:04:47.582 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 11 milliseconds, 8000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@4fe1138a[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) + at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:36.297 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 982500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7a0ff17a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:05:36.297 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 982500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7a0ff17a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 13 milliseconds, 982500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7a0ff17a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 32 common frames omitted +09:06:09.316 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 827500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@e2a397a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:06:09.316 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 827500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@e2a397a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 6 milliseconds, 827500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@e2a397a[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 32 common frames omitted +09:07:39.651 [http-nio-9101-exec-13] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 386400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5729510f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] +09:07:39.651 [http-nio-9101-exec-13] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 386400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5729510f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor57.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor56.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:76) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) + at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) + at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) + at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) + at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) + at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) + at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:181) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter.doFilterInternal(DefaultLogoutPageGeneratingFilter.java:58) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:189) + at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:175) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:227) + at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:221) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) + at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.csrf.CsrfFilter.doFilterInternal(CsrfFilter.java:117) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) + at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) + at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) + at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) + at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) + at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) + at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) + at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352) + at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 386400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@5729510f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) ... 183 common frames omitted -19:31:57.968 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 177600 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@77737e3e[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3c98781a, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f736a16, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4601203a}}}}]] - at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) - at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) +09:07:39.823 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +09:07:39.931 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +09:07:40.041 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +09:07:40.152 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA2ODUxN30.Xlh1o2vXn5xciNd-PF7M5msl4WF_5fFgbl4bTpWCQ5U, app=unknown}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +09:07:40.152 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor58.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:47) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.modules.monitor.CloudMonitorApplication.main(CloudMonitorApplication.java:16) -19:32:00.974 [main] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 47.116.173.119 ,port 9848 is available , error ={} -java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 1 milliseconds, 799100 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@6023b54f[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3c98781a, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3f736a16, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@4601203a}}}}]] + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:07:47.060 [com.alibaba.nacos.client.remote.worker.1] ERROR c.a.n.c.r.c.g.GrpcClient - [printIfErrorEnabled,102] - Server check fail, please check server 110.42.213.184 ,port 9848 is available , error ={} +java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 4 milliseconds, 237300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@16a713dc[status=PENDING, info=[GrpcFuture{clientCall=PendingCall{realCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@125b4e74, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@5648118e, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@3ca8bb1e}}}}]] at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.serverCheck(GrpcClient.java:243) at com.alibaba.nacos.common.remote.client.grpc.GrpcClient.connectToServer(GrpcClient.java:367) - at com.alibaba.nacos.common.remote.client.RpcClient.start(RpcClient.java:349) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.start(NamingGrpcClientProxy.java:117) - at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.(NamingGrpcClientProxy.java:110) - at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.(NamingClientProxyDelegate.java:80) - at com.alibaba.nacos.client.naming.NacosNamingService.init(NacosNamingService.java:107) - at com.alibaba.nacos.client.naming.NacosNamingService.(NacosNamingService.java:90) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method) - at java.base/jdk.internal.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:77) - at java.base/jdk.internal.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45) - at java.base/java.lang.reflect.Constructor.newInstanceWithCaller(Constructor.java:499) - at java.base/java.lang.reflect.Constructor.newInstance(Constructor.java:480) - at com.alibaba.nacos.api.naming.NamingFactory.createNamingService(NamingFactory.java:59) - at com.alibaba.nacos.api.NacosFactory.createNamingService(NacosFactory.java:77) - at com.alibaba.cloud.nacos.NacosServiceManager.createNewNamingService(NacosServiceManager.java:99) - at com.alibaba.cloud.nacos.NacosServiceManager.buildNamingService(NacosServiceManager.java:90) - at com.alibaba.cloud.nacos.NacosServiceManager.getNamingService(NacosServiceManager.java:46) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.namingService(NacosServiceRegistry.java:193) - at com.alibaba.cloud.nacos.registry.NacosServiceRegistry.register(NacosServiceRegistry.java:68) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.register(AbstractAutoServiceRegistration.java:264) - at com.alibaba.cloud.nacos.registry.NacosAutoServiceRegistration.register(NacosAutoServiceRegistration.java:78) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.start(AbstractAutoServiceRegistration.java:156) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:119) - at org.springframework.cloud.client.serviceregistry.AbstractAutoServiceRegistration.onApplicationEvent(AbstractAutoServiceRegistration.java:49) + at com.alibaba.nacos.common.remote.client.RpcClient.reconnect(RpcClient.java:502) + at com.alibaba.nacos.common.remote.client.RpcClient.lambda$start$1(RpcClient.java:329) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:55:51.307 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=a6b085f8b2a302f1963638e427b20746, Client-RequestTS=1727056548306, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 55400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2adfd49f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] +09:55:51.308 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 55400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2adfd49f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 55400 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2adfd49f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 9 common frames omitted +09:57:17.282 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg1N30.de9_3-ibsXS-yso2OXktt8hLUcOo8AlcgLE7DEOs4Sc, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 197300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@23fc3cb9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] +09:57:17.286 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 197300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@23fc3cb9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor81.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) - at org.springframework.boot.web.servlet.context.WebServerStartStopLifecycle.start(WebServerStartStopLifecycle.java:47) - at org.springframework.context.support.DefaultLifecycleProcessor.doStart(DefaultLifecycleProcessor.java:288) - at org.springframework.context.support.DefaultLifecycleProcessor$LifecycleGroup.start(DefaultLifecycleProcessor.java:471) - at java.base/java.lang.Iterable.forEach(Iterable.java:75) - at org.springframework.context.support.DefaultLifecycleProcessor.startBeans(DefaultLifecycleProcessor.java:260) - at org.springframework.context.support.DefaultLifecycleProcessor.onRefresh(DefaultLifecycleProcessor.java:205) - at org.springframework.context.support.AbstractApplicationContext.finishRefresh(AbstractApplicationContext.java:981) - at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:627) - at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) - at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:754) - at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:456) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:335) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1363) - at org.springframework.boot.SpringApplication.run(SpringApplication.java:1352) - at com.muyu.modules.monitor.CloudMonitorApplication.main(CloudMonitorApplication.java:16) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 197300 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@23fc3cb9[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 32 common frames omitted +09:57:18.037 [http-nio-9101-exec-3] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg1N30.de9_3-ibsXS-yso2OXktt8hLUcOo8AlcgLE7DEOs4Sc, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 393800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2815251b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] +09:57:18.037 [http-nio-9101-exec-3] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 393800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2815251b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at org.springframework.cloud.client.discovery.health.DiscoveryClientHealthIndicator.health(DiscoveryClientHealthIndicator.java:73) + at org.springframework.boot.actuate.health.HealthIndicator.getHealth(HealthIndicator.java:37) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:94) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.getHealth(HealthEndpointWebExtension.java:47) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getLoggedHealth(HealthEndpointSupport.java:172) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:145) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getAggregateContribution(HealthEndpointSupport.java:156) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getContribution(HealthEndpointSupport.java:141) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:110) + at org.springframework.boot.actuate.health.HealthEndpointSupport.getHealth(HealthEndpointSupport.java:81) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:80) + at org.springframework.boot.actuate.health.HealthEndpointWebExtension.health(HealthEndpointWebExtension.java:69) + at jdk.internal.reflect.GeneratedMethodAccessor80.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:281) + at org.springframework.boot.actuate.endpoint.invoke.reflect.ReflectiveOperationInvoker.invoke(ReflectiveOperationInvoker.java:74) + at org.springframework.boot.actuate.endpoint.annotation.AbstractDiscoveredOperation.invoke(AbstractDiscoveredOperation.java:60) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$ServletWebOperationAdapter.handle(AbstractWebMvcEndpointHandlerMapping.java:327) + at org.springframework.boot.actuate.endpoint.web.servlet.AbstractWebMvcEndpointHandlerMapping$OperationHandler.handle(AbstractWebMvcEndpointHandlerMapping.java:434) + at jdk.internal.reflect.GeneratedMethodAccessor79.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.web.method.support.InvocableHandlerMethod.doInvoke(InvocableHandlerMethod.java:255) + at org.springframework.web.method.support.InvocableHandlerMethod.invokeForRequest(InvocableHandlerMethod.java:188) + at org.springframework.web.servlet.mvc.method.annotation.ServletInvocableHandlerMethod.invokeAndHandle(ServletInvocableHandlerMethod.java:118) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.invokeHandlerMethod(RequestMappingHandlerAdapter.java:926) + at org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter.handleInternal(RequestMappingHandlerAdapter.java:831) + at org.springframework.web.servlet.mvc.method.AbstractHandlerMethodAdapter.handle(AbstractHandlerMethodAdapter.java:87) + at org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:1089) + at org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:979) + at org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:1014) + at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:903) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:564) + at org.springframework.web.servlet.FrameworkServlet.service(FrameworkServlet.java:885) + at jakarta.servlet.http.HttpServlet.service(HttpServlet.java:658) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:195) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.tomcat.websocket.server.WsFilter.doFilter(WsFilter.java:51) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at de.codecentric.boot.admin.server.ui.web.servlet.HomepageForwardingFilter.doFilter(HomepageForwardingFilter.java:76) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:108) + at org.springframework.security.web.FilterChainProxy.lambda$doFilterInternal$3(FilterChainProxy.java:231) + at org.springframework.security.web.ObservationFilterChainDecorator$FilterObservation$SimpleFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:479) + at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$1(ObservationFilterChainDecorator.java:340) + at org.springframework.security.web.ObservationFilterChainDecorator.lambda$wrapSecured$0(ObservationFilterChainDecorator.java:82) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:128) + at org.springframework.security.web.access.intercept.AuthorizationFilter.doFilter(AuthorizationFilter.java:100) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:126) + at org.springframework.security.web.access.ExceptionTranslationFilter.doFilter(ExceptionTranslationFilter.java:120) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.AnonymousAuthenticationFilter.doFilter(AnonymousAuthenticationFilter.java:100) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.servletapi.SecurityContextHolderAwareRequestFilter.doFilter(SecurityContextHolderAwareRequestFilter.java:179) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.savedrequest.RequestCacheAwareFilter.doFilter(RequestCacheAwareFilter.java:63) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.www.BasicAuthenticationFilter.doFilterInternal(BasicAuthenticationFilter.java:181) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.ui.DefaultLogoutPageGeneratingFilter.doFilterInternal(DefaultLogoutPageGeneratingFilter.java:58) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:189) + at org.springframework.security.web.authentication.ui.DefaultLoginPageGeneratingFilter.doFilter(DefaultLoginPageGeneratingFilter.java:175) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:227) + at org.springframework.security.web.authentication.AbstractAuthenticationProcessingFilter.doFilter(AbstractAuthenticationProcessingFilter.java:221) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:107) + at org.springframework.security.web.authentication.logout.LogoutFilter.doFilter(LogoutFilter.java:93) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.csrf.CsrfFilter.doFilterInternal(CsrfFilter.java:117) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.web.filter.CorsFilter.doFilterInternal(CorsFilter.java:91) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.header.HeaderWriterFilter.doHeadersAfter(HeaderWriterFilter.java:90) + at org.springframework.security.web.header.HeaderWriterFilter.doFilterInternal(HeaderWriterFilter.java:75) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:82) + at org.springframework.security.web.context.SecurityContextHolderFilter.doFilter(SecurityContextHolderFilter.java:69) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.context.request.async.WebAsyncManagerIntegrationFilter.doFilterInternal(WebAsyncManagerIntegrationFilter.java:62) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:227) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.session.DisableEncodeUrlFilter.doFilterInternal(DisableEncodeUrlFilter.java:42) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.wrapFilter(ObservationFilterChainDecorator.java:240) + at org.springframework.security.web.ObservationFilterChainDecorator$AroundFilterObservation$SimpleAroundFilterObservation.lambda$wrap$0(ObservationFilterChainDecorator.java:323) + at org.springframework.security.web.ObservationFilterChainDecorator$ObservationFilter.doFilter(ObservationFilterChainDecorator.java:224) + at org.springframework.security.web.ObservationFilterChainDecorator$VirtualFilterChain.doFilter(ObservationFilterChainDecorator.java:137) + at org.springframework.security.web.FilterChainProxy.doFilterInternal(FilterChainProxy.java:233) + at org.springframework.security.web.FilterChainProxy.doFilter(FilterChainProxy.java:191) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) + at org.springframework.web.servlet.handler.HandlerMappingIntrospector.lambda$createCacheFilter$3(HandlerMappingIntrospector.java:195) + at org.springframework.web.filter.CompositeFilter$VirtualFilterChain.doFilter(CompositeFilter.java:113) + at org.springframework.web.filter.CompositeFilter.doFilter(CompositeFilter.java:74) + at org.springframework.security.config.annotation.web.configuration.WebMvcSecurityConfiguration$CompositeFilterChainProxy.doFilter(WebMvcSecurityConfiguration.java:230) + at org.springframework.web.filter.DelegatingFilterProxy.invokeDelegate(DelegatingFilterProxy.java:352) + at org.springframework.web.filter.DelegatingFilterProxy.doFilter(DelegatingFilterProxy.java:268) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.RequestContextFilter.doFilterInternal(RequestContextFilter.java:100) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.FormContentFilter.doFilterInternal(FormContentFilter.java:93) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.ServerHttpObservationFilter.doFilterInternal(ServerHttpObservationFilter.java:109) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.springframework.web.filter.CharacterEncodingFilter.doFilterInternal(CharacterEncodingFilter.java:201) + at org.springframework.web.filter.OncePerRequestFilter.doFilter(OncePerRequestFilter.java:116) + at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:164) + at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:140) + at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:167) + at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:90) + at org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482) + at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:115) + at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:93) + at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:74) + at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:344) + at org.apache.coyote.http11.Http11Processor.service(Http11Processor.java:389) + at org.apache.coyote.AbstractProcessorLight.process(AbstractProcessorLight.java:63) + at org.apache.coyote.AbstractProtocol$ConnectionHandler.process(AbstractProtocol.java:896) + at org.apache.tomcat.util.net.NioEndpoint$SocketProcessor.doRun(NioEndpoint.java:1741) + at org.apache.tomcat.util.net.SocketProcessorBase.run(SocketProcessorBase.java:52) + at org.apache.tomcat.util.threads.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1190) + at org.apache.tomcat.util.threads.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:659) + at org.apache.tomcat.util.threads.TaskThread$WrappingRunnable.run(TaskThread.java:63) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 9 milliseconds, 393800 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2815251b[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 183 common frames omitted +09:58:22.593 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg1N30.de9_3-ibsXS-yso2OXktt8hLUcOo8AlcgLE7DEOs4Sc, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 648500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7b1a8c6f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] +09:58:22.593 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 648500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7b1a8c6f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor81.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 648500 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@7b1a8c6f[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 32 common frames omitted +10:01:26.392 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Connection is unregistered, switch server, connectionId = 1727056883118_117.143.60.138_55885, request = ConfigBatchListenRequest +10:01:26.506 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68fbfecd3afe3df63965ad06ef0073b4, Client-RequestTS=1727056884998, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Connection is unregistered. +10:01:26.613 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68fbfecd3afe3df63965ad06ef0073b4, Client-RequestTS=1727056884998, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:26.724 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68fbfecd3afe3df63965ad06ef0073b4, Client-RequestTS=1727056884998, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:26.832 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=68fbfecd3afe3df63965ad06ef0073b4, Client-RequestTS=1727056884998, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:26.832 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:27.007 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=345ae2ae9e4a6df4c14e0d8b27b55e68, Client-RequestTS=1727056886895, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:27.117 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=345ae2ae9e4a6df4c14e0d8b27b55e68, Client-RequestTS=1727056886895, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:27.226 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=345ae2ae9e4a6df4c14e0d8b27b55e68, Client-RequestTS=1727056886895, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:27.336 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=345ae2ae9e4a6df4c14e0d8b27b55e68, Client-RequestTS=1727056886895, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:27.336 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:27.492 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=400a5229b9b13117f9b9559102787457, Client-RequestTS=1727056887387, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:27.593 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=400a5229b9b13117f9b9559102787457, Client-RequestTS=1727056887387, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:27.694 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=400a5229b9b13117f9b9559102787457, Client-RequestTS=1727056887387, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:27.796 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=400a5229b9b13117f9b9559102787457, Client-RequestTS=1727056887387, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:27.796 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:27.957 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67ba037dd24889457d747d34fdff787c, Client-RequestTS=1727056887847, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:28.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67ba037dd24889457d747d34fdff787c, Client-RequestTS=1727056887847, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:28.174 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67ba037dd24889457d747d34fdff787c, Client-RequestTS=1727056887847, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:28.282 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=67ba037dd24889457d747d34fdff787c, Client-RequestTS=1727056887847, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:28.282 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:28.455 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18f449c6cec347988ec5bf4e648d52bf, Client-RequestTS=1727056888345, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:28.565 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18f449c6cec347988ec5bf4e648d52bf, Client-RequestTS=1727056888345, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:28.675 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18f449c6cec347988ec5bf4e648d52bf, Client-RequestTS=1727056888345, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:28.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=18f449c6cec347988ec5bf4e648d52bf, Client-RequestTS=1727056888345, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:28.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:28.958 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9935a4df619815fe02009a87eac8cd7, Client-RequestTS=1727056888850, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:29.067 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9935a4df619815fe02009a87eac8cd7, Client-RequestTS=1727056888850, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:29.177 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9935a4df619815fe02009a87eac8cd7, Client-RequestTS=1727056888850, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:29.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=e9935a4df619815fe02009a87eac8cd7, Client-RequestTS=1727056888850, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:29.288 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:29.460 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=501155efd1fac9cdf5c3ebaf03ea4995, Client-RequestTS=1727056889351, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:29.568 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=501155efd1fac9cdf5c3ebaf03ea4995, Client-RequestTS=1727056889351, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:29.676 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=501155efd1fac9cdf5c3ebaf03ea4995, Client-RequestTS=1727056889351, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:29.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=501155efd1fac9cdf5c3ebaf03ea4995, Client-RequestTS=1727056889351, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:29.786 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:29.939 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6b61d7ef25bfcf21b30219c90480747b, Client-RequestTS=1727056889838, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:30.040 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6b61d7ef25bfcf21b30219c90480747b, Client-RequestTS=1727056889838, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:30.142 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6b61d7ef25bfcf21b30219c90480747b, Client-RequestTS=1727056889838, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:30.250 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=6b61d7ef25bfcf21b30219c90480747b, Client-RequestTS=1727056889838, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:30.250 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:30.403 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f30b8a8dfed4f91069d32b2abe47b194, Client-RequestTS=1727056890301, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:01:30.503 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f30b8a8dfed4f91069d32b2abe47b194, Client-RequestTS=1727056890301, exConfigInfo=true}, requestId='null'}, retryTimes = 1, errorMessage = Client not connected, current status:UNHEALTHY +10:01:30.604 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f30b8a8dfed4f91069d32b2abe47b194, Client-RequestTS=1727056890301, exConfigInfo=true}, requestId='null'}, retryTimes = 2, errorMessage = Client not connected, current status:UNHEALTHY +10:01:30.705 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=f30b8a8dfed4f91069d32b2abe47b194, Client-RequestTS=1727056890301, exConfigInfo=true}, requestId='null'}, retryTimes = 3, errorMessage = Client not connected, current status:UNHEALTHY +10:01:30.705 [nacos.client.config.listener.task-0] ERROR c.a.n.c.c.i.ClientWorker - [lambda$checkListenCache$7,1065] - Execute listen config change error +com.alibaba.nacos.api.exception.NacosException: Client not connected, current status:UNHEALTHY + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:644) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1221) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.requestProxy(ClientWorker.java:1202) + at com.alibaba.nacos.client.config.impl.ClientWorker$ConfigRpcTransportClient.lambda$checkListenCache$7(ClientWorker.java:1018) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:30.859 [nacos.client.config.listener.task-0] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ConfigBatchListenRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg0NH0.kdkxi3m7KBihPMiHTQwTeMg2SxcrKpyyUBoB64axOo8, charset=UTF-8, Client-AppName=unknown, Client-RequestToken=22f6a653d32ae79b91b3aafdcc1ea4c6, Client-RequestTS=1727056890756, exConfigInfo=true}, requestId='null'}, retryTimes = 0, errorMessage = Client not connected, current status:UNHEALTHY +10:05:34.470 [HeartBeat-Task-Scheduler-1] ERROR c.a.n.c.r.client - [printIfErrorEnabled,102] - Send request fail, request = ServiceListRequest{headers={accessToken=eyJhbGciOiJIUzI1NiJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTcyNzA3MTg1N30.de9_3-ibsXS-yso2OXktt8hLUcOo8AlcgLE7DEOs4Sc, app=unknown}, requestId='null'}, retryTimes = 0, errorMessage = java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 400000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2997b13d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] +10:05:34.470 [HeartBeat-Task-Scheduler-1] ERROR c.a.c.n.d.NacosDiscoveryClient - [getServices,86] - get service name from nacos server failed. +com.alibaba.nacos.api.exception.NacosException: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 400000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2997b13d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:82) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:646) + at com.alibaba.nacos.common.remote.client.RpcClient.request(RpcClient.java:623) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.requestToServer(NamingGrpcClientProxy.java:447) + at com.alibaba.nacos.client.naming.remote.gprc.NamingGrpcClientProxy.getServiceList(NamingGrpcClientProxy.java:368) + at com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate.getServiceList(NamingClientProxyDelegate.java:159) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:470) + at com.alibaba.nacos.client.naming.NacosNamingService.getServicesOfServer(NacosNamingService.java:458) + at com.alibaba.cloud.nacos.discovery.NacosServiceDiscovery.getServices(NacosServiceDiscovery.java:70) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryClient.getServices(NacosDiscoveryClient.java:80) + at org.springframework.cloud.client.discovery.composite.CompositeDiscoveryClient.getServices(CompositeDiscoveryClient.java:68) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discover(InstanceDiscoveryListener.java:126) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.discoverIfNeeded(InstanceDiscoveryListener.java:120) + at de.codecentric.boot.admin.server.cloud.discovery.InstanceDiscoveryListener.onApplicationEvent(InstanceDiscoveryListener.java:115) + at jdk.internal.reflect.GeneratedMethodAccessor81.invoke(Unknown Source) + at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) + at java.base/java.lang.reflect.Method.invoke(Method.java:568) + at org.springframework.context.event.ApplicationListenerMethodAdapter.doInvoke(ApplicationListenerMethodAdapter.java:365) + at org.springframework.context.event.ApplicationListenerMethodAdapter.processEvent(ApplicationListenerMethodAdapter.java:237) + at org.springframework.context.event.ApplicationListenerMethodAdapter.onApplicationEvent(ApplicationListenerMethodAdapter.java:168) + at org.springframework.context.event.SimpleApplicationEventMulticaster.doInvokeListener(SimpleApplicationEventMulticaster.java:185) + at org.springframework.context.event.SimpleApplicationEventMulticaster.invokeListener(SimpleApplicationEventMulticaster.java:178) + at org.springframework.context.event.SimpleApplicationEventMulticaster.multicastEvent(SimpleApplicationEventMulticaster.java:156) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:451) + at org.springframework.context.support.AbstractApplicationContext.publishEvent(AbstractApplicationContext.java:384) + at com.alibaba.cloud.nacos.discovery.NacosDiscoveryHeartBeatPublisher.publishHeartBeat(NacosDiscoveryHeartBeatPublisher.java:104) + at org.springframework.scheduling.support.DelegatingErrorHandlingRunnable.run(DelegatingErrorHandlingRunnable.java:54) + at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:539) + at java.base/java.util.concurrent.FutureTask.runAndReset(FutureTask.java:305) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:305) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: java.util.concurrent.TimeoutException: Waited 3000 milliseconds (plus 10 milliseconds, 400000 nanoseconds delay) for com.alibaba.nacos.shaded.io.grpc.stub.ClientCalls$GrpcFuture@2997b13d[status=PENDING, info=[GrpcFuture{clientCall=ClientCallImpl{method=MethodDescriptor{fullMethodName=Request/request, type=UNARY, idempotent=false, safe=false, sampledToLocalTracing=true, requestMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@2c84d4c4, responseMarshaller=com.alibaba.nacos.shaded.io.grpc.protobuf.lite.ProtoLiteUtils$MessageMarshaller@3e177467, schemaDescriptor=com.alibaba.nacos.api.grpc.auto.RequestGrpc$RequestMethodDescriptorSupplier@67d029da}}}]] + at com.alibaba.nacos.shaded.com.google.common.util.concurrent.AbstractFuture.get(AbstractFuture.java:531) + at com.alibaba.nacos.common.remote.client.grpc.GrpcConnection.request(GrpcConnection.java:79) + ... 32 common frames omitted diff --git a/logs/cloud-visual-monitor/info.2024-09-16.log b/logs/cloud-visual-monitor/info.2024-09-16.log index 9b6e213..55fc8b3 100644 --- a/logs/cloud-visual-monitor/info.2024-09-16.log +++ b/logs/cloud-visual-monitor/info.2024-09-16.log @@ -1,1309 +1,117 @@ -20:11:47.789 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:11:49.103 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -20:11:49.104 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:11:49.105 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:11:49.170 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:11:49.599 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:11:52.083 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -20:11:52.390 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:11:52.390 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:11:52.391 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:11:52.395 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:11:52.400 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:11:52.401 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:11:52.521 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 9b4aca41-cca8-42c7-b424-1b9de9be2524 -20:11:52.525 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->9b4aca41-cca8-42c7-b424-1b9de9be2524 -20:11:52.525 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:11:52.525 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:11:52.526 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:11:52.527 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:11:52.528 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:11:52.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726488714251_39.144.43.42_62449 -20:11:52.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:11:52.859 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x00000008010790a0 -20:11:52.859 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Notify connected event to listeners. -20:11:52.860 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:11:52.861 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:11:52.915 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.0.139:9101 register finished -20:11:52.958 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:11:52.959 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:11:52.991 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:11:53.004 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:11:53.009 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:11:53.010 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:11:53.073 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:11:53.073 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:11:53.077 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:11:53.077 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:11:53.111 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:11:53.112 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:11:53.113 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:11:53.114 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:11:53.156 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -20:11:53.157 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -20:11:53.159 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:11:53.159 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:11:53.201 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-file -> [] -20:11:53.201 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -20:11:53.202 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:11:53.202 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:11:53.231 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -20:11:53.232 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -20:11:53.236 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:11:53.253 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.798 seconds (process running for 9.296) -20:11:53.261 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:11:53.262 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:11:53.262 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -20:11:53.263 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -20:11:53.263 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -20:11:53.264 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -20:11:53.264 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -20:11:53.264 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -20:11:53.265 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -20:11:53.265 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:11:53.265 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -20:11:53.461 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Receive server push request, request = NotifySubscriberRequest, requestId = 10211 -20:11:53.464 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:11:53.465 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:11:53.467 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Ack server push request, request = NotifySubscriberRequest, requestId = 10211 -20:11:53.563 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Receive server push request, request = NotifySubscriberRequest, requestId = 10212 -20:11:53.563 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Ack server push request, request = NotifySubscriberRequest, requestId = 10212 -20:11:53.664 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Receive server push request, request = NotifySubscriberRequest, requestId = 10213 -20:11:53.665 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Ack server push request, request = NotifySubscriberRequest, requestId = 10213 -20:11:53.668 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Receive server push request, request = NotifySubscriberRequest, requestId = 10214 -20:11:53.668 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Ack server push request, request = NotifySubscriberRequest, requestId = 10214 -20:11:53.671 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Receive server push request, request = NotifySubscriberRequest, requestId = 10215 -20:11:53.672 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Ack server push request, request = NotifySubscriberRequest, requestId = 10215 -20:11:53.708 [RMI TCP Connection(3)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:11:53.763 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Receive server push request, request = NotifySubscriberRequest, requestId = 10216 -20:11:53.764 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [9b4aca41-cca8-42c7-b424-1b9de9be2524] Ack server push request, request = NotifySubscriberRequest, requestId = 10216 -20:13:16.432 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:13:16.432 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:13:16.520 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:13:16.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:13:16.521 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:13:16.522 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:13:16.522 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:13:16.522 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:13:16.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:13:16.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:13:16.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:13:16.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:13:16.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:13:16.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:13:16.523 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->9b4aca41-cca8-42c7-b424-1b9de9be2524 -20:13:16.524 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@78360e75[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 27] -20:13:16.524 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:13:16.524 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@73aa3b50[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:13:16.524 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726488714251_39.144.43.42_62449 -20:13:16.528 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@95d6f1e[Running, pool size = 3, active threads = 0, queued tasks = 0, completed tasks = 43] -20:13:16.528 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->9b4aca41-cca8-42c7-b424-1b9de9be2524 -20:13:16.528 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:13:16.529 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:13:16.529 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:13:25.348 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:13:26.911 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -20:13:26.913 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:13:26.913 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:13:26.970 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:13:27.422 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:13:30.301 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -20:13:30.621 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:13:30.622 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:13:30.622 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:13:30.626 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:13:30.630 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:13:30.631 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:13:31.038 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 105242de-75ba-4bd3-935d-f737e1e4111c -20:13:31.040 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->105242de-75ba-4bd3-935d-f737e1e4111c -20:13:31.041 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:13:31.041 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:13:31.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:13:31.043 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:13:31.043 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:13:31.390 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726488812862_39.144.43.42_62459 -20:13:31.390 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:13:31.390 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Notify connected event to listeners. -20:13:31.390 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801066a20 -20:13:31.390 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:13:31.391 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:13:31.468 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.0.139:9101 register finished -20:13:31.556 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:13:31.556 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:13:31.634 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:31.642 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:31.833 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:13:31.833 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:13:31.872 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -20:13:31.872 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -20:13:31.876 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:13:31.895 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 9.592 seconds (process running for 10.124) -20:13:31.904 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:13:31.905 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:13:31.905 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -20:13:31.906 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -20:13:31.906 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -20:13:31.907 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -20:13:31.907 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -20:13:31.907 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -20:13:31.909 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -20:13:31.909 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:13:31.910 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -20:13:32.004 [nacos-grpc-client-executor-47.116.173.119-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10218 -20:13:32.005 [nacos-grpc-client-executor-47.116.173.119-14] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:32.006 [nacos-grpc-client-executor-47.116.173.119-14] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:13:32.008 [nacos-grpc-client-executor-47.116.173.119-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10218 -20:13:32.200 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10219 -20:13:32.201 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10219 -20:13:32.246 [RMI TCP Connection(5)-192.168.0.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:14:02.033 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:14:02.033 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:14:02.080 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:02.080 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:02.080 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:14:02.080 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:14:02.221 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:02.221 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:02.221 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:14:02.221 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:14:02.379 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:02.394 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:02.592 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10224 -20:14:02.593 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10224 -20:14:02.786 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10225 -20:14:02.786 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10225 -20:14:02.896 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10226 -20:14:02.896 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10226 -20:14:32.501 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:14:32.501 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:14:32.589 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:32.589 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:14:33.101 [nacos-grpc-client-executor-47.116.173.119-37] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10229 -20:14:33.101 [nacos-grpc-client-executor-47.116.173.119-37] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10229 -20:22:25.184 [nacos-grpc-client-executor-47.116.173.119-135] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10232 -20:22:25.185 [nacos-grpc-client-executor-47.116.173.119-135] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:22:25.185 [nacos-grpc-client-executor-47.116.173.119-135] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -20:22:25.186 [nacos-grpc-client-executor-47.116.173.119-135] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10232 -20:22:25.277 [nacos-grpc-client-executor-47.116.173.119-136] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10234 -20:22:25.278 [nacos-grpc-client-executor-47.116.173.119-136] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:22:25.278 [nacos-grpc-client-executor-47.116.173.119-136] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:22:25.279 [nacos-grpc-client-executor-47.116.173.119-136] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10234 -20:22:25.480 [nacos-grpc-client-executor-47.116.173.119-137] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10237 -20:22:25.481 [nacos-grpc-client-executor-47.116.173.119-137] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:22:25.481 [nacos-grpc-client-executor-47.116.173.119-137] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:22:25.482 [nacos-grpc-client-executor-47.116.173.119-137] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10237 -20:22:25.486 [nacos-grpc-client-executor-47.116.173.119-138] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Receive server push request, request = NotifySubscriberRequest, requestId = 10238 -20:22:25.487 [nacos-grpc-client-executor-47.116.173.119-138] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:22:25.488 [nacos-grpc-client-executor-47.116.173.119-138] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:22:25.489 [nacos-grpc-client-executor-47.116.173.119-138] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [105242de-75ba-4bd3-935d-f737e1e4111c] Ack server push request, request = NotifySubscriberRequest, requestId = 10238 -20:22:26.702 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:22:26.702 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:22:26.804 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:22:26.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:22:26.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:22:26.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:22:26.805 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->105242de-75ba-4bd3-935d-f737e1e4111c -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1dcffb4c[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 178] -20:22:26.806 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:22:26.807 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@1c066d12[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:22:26.807 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726488812862_39.144.43.42_62459 -20:22:26.810 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@5dacde1[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 140] -20:22:26.810 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->105242de-75ba-4bd3-935d-f737e1e4111c -20:22:26.810 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:22:26.810 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:22:26.810 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:27:53.557 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:27:55.275 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -20:27:55.277 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:27:55.278 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:27:55.352 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:27:55.738 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:27:57.941 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -20:27:58.180 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:27:58.181 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:27:58.181 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:27:58.184 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:27:58.187 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -20:27:58.188 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -20:27:58.613 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of a9b3a2ae-38a2-46f4-a03f-2a8246d797a2 -20:27:58.616 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->a9b3a2ae-38a2-46f4-a03f-2a8246d797a2 -20:27:58.616 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:27:58.617 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:27:58.617 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:27:58.618 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:27:58.618 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:27:58.811 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489680376_39.144.43.42_62480 -20:27:58.811 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:27:58.811 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801067060 -20:27:58.811 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Notify connected event to listeners. -20:27:58.812 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:27:58.813 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:27:58.894 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.0.139:9101 register finished -20:27:58.945 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:27:58.945 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:27:59.011 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.018 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.165 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:27:59.165 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:27:59.233 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.234 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.239 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:27:59.239 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:27:59.295 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.295 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.303 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:27:59.303 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:27:59.373 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.374 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.380 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:27:59.380 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:27:59.465 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.468 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:27:59.479 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:27:59.503 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 9.643 seconds (process running for 10.157) -20:27:59.515 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:27:59.515 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:27:59.515 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -20:27:59.516 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -20:27:59.517 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -20:27:59.517 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -20:27:59.517 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -20:27:59.517 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -20:27:59.519 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -20:27:59.520 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:27:59.520 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -20:27:59.522 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10246 -20:27:59.523 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10246 -20:27:59.563 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:27:59.896 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10247 -20:27:59.896 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10247 -20:27:59.899 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10248 -20:27:59.900 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10248 -20:27:59.903 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10249 -20:27:59.904 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10249 -20:28:00.028 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10250 -20:28:00.029 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10250 -20:28:29.630 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:28:29.630 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:28:29.706 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:28:29.707 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:28:30.250 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10254 -20:28:30.250 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10254 -20:31:11.266 [nacos-grpc-client-executor-47.116.173.119-65] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10302 -20:31:11.267 [nacos-grpc-client-executor-47.116.173.119-65] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:31:11.267 [nacos-grpc-client-executor-47.116.173.119-65] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:31:11.268 [nacos-grpc-client-executor-47.116.173.119-65] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10302 -20:31:11.270 [nacos-grpc-client-executor-47.116.173.119-66] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10304 -20:31:11.270 [nacos-grpc-client-executor-47.116.173.119-66] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:31:11.270 [nacos-grpc-client-executor-47.116.173.119-66] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -20:31:11.271 [nacos-grpc-client-executor-47.116.173.119-66] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10304 -20:31:11.365 [nacos-grpc-client-executor-47.116.173.119-67] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10306 -20:31:11.365 [nacos-grpc-client-executor-47.116.173.119-67] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:31:11.365 [nacos-grpc-client-executor-47.116.173.119-67] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:31:11.366 [nacos-grpc-client-executor-47.116.173.119-67] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10306 -20:31:11.479 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Receive server push request, request = NotifySubscriberRequest, requestId = 10308 -20:31:11.479 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:31:11.481 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:31:11.482 [nacos-grpc-client-executor-47.116.173.119-68] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a9b3a2ae-38a2-46f4-a03f-2a8246d797a2] Ack server push request, request = NotifySubscriberRequest, requestId = 10308 -20:31:12.735 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:31:12.735 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:31:12.785 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:31:12.786 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:31:12.787 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:31:12.788 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:31:12.788 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->a9b3a2ae-38a2-46f4-a03f-2a8246d797a2 -20:31:12.788 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@566a6ba0[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 64] -20:31:12.788 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:31:12.788 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5ab281fa[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:31:12.788 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489680376_39.144.43.42_62480 -20:31:12.792 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@705b65a1[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 70] -20:31:12.792 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->a9b3a2ae-38a2-46f4-a03f-2a8246d797a2 -20:31:12.792 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:31:12.793 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:31:12.793 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:31:22.128 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:31:23.509 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -20:31:23.511 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:31:23.511 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:31:23.559 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:31:23.990 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:31:26.119 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -20:31:26.438 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:31:26.439 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:31:26.439 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:31:26.444 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:31:26.448 [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:26.448 [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:26.569 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 66c674d0-da65-4185-8499-c5b2f9f53121 -20:31:26.570 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->66c674d0-da65-4185-8499-c5b2f9f53121 -20:31:26.570 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:31:26.571 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:31:26.571 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:31:26.572 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:31:26.572 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:31:26.805 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726489888301_39.144.43.42_62488 -20:31:26.805 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:31:26.805 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Notify connected event to listeners. -20:31:26.805 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801066a20 -20:31:26.805 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:31:26.806 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -20:31:26.967 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.0.139:9101 register finished -20:31:27.028 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:31:27.028 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:31:27.068 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:31:27.082 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:31:27.087 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:31:27.088 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:31:27.139 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:31:27.139 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:31:27.140 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:31:27.141 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:31:27.181 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:31:27.181 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:31:27.183 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:31:27.183 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:31:27.213 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -20:31:27.213 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -20:31:27.215 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:31:27.215 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:31:27.275 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:27.277 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:27.491 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:31:27.492 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:31:27.539 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -20:31:27.541 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -20:31:27.545 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:31:27.568 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10312 -20:31:27.568 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10312 -20:31:27.568 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.677 seconds (process running for 9.186) -20:31:27.572 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10313 -20:31:27.574 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:27.574 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:27.575 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10313 -20:31:27.581 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:31:27.581 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:31:27.582 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -20:31:27.583 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -20:31:27.584 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -20:31:27.584 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -20:31:27.585 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -20:31:27.585 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -20:31:27.587 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -20:31:27.587 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:31:27.587 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -20:31:27.640 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:31:27.669 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10314 -20:31:27.670 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10314 -20:31:27.776 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10315 -20:31:27.777 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10315 -20:31:27.779 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10316 -20:31:27.780 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10316 -20:31:27.783 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10317 -20:31:27.784 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10317 -20:31:39.098 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10318 -20:31:39.099 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:39.099 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:39.100 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10318 -20:31:42.241 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10320 -20:31:42.241 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.242 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.243 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10320 -20:31:42.693 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10322 -20:31:42.695 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.699 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:42.700 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10322 -20:31:47.990 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10328 -20:31:47.990 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:47.992 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:31:47.992 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10328 -20:32:14.796 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10330 -20:32:14.797 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:14.797 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -20:32:14.798 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10330 -20:32:14.896 [nacos-grpc-client-executor-47.116.173.119-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10332 -20:32:14.898 [nacos-grpc-client-executor-47.116.173.119-39] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:14.898 [nacos-grpc-client-executor-47.116.173.119-39] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -20:32:14.899 [nacos-grpc-client-executor-47.116.173.119-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10332 -20:32:15.038 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10334 -20:32:15.038 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:15.038 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -20:32:15.039 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10334 -20:32:15.153 [reactor-http-nio-10] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=86470c99a08c, version=2, registration=Registration(name=cloud-system, managementUrl=http://192.168.0.139:9701/actuator, healthUrl=http://192.168.0.139:9701/actuator/health, serviceUrl=http://192.168.0.139:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-16T12:31:57.865345200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.0.139:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.0.139:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.0.139:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.0.139:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.0.139:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.0.139:9701/actuator/refresh), env=Endpoint(id=env, url=http://192.168.0.139:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.0.139:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.0.139:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.0.139:9701/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.0.139:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.0.139:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.0.139:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.0.139:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.0.139:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.0.139:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.0.139:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.0.139:9701/actuator/conditions), info=Endpoint(id=info, url=http://192.168.0.139:9701/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -20:32:15.153 [reactor-http-nio-9] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a8823c94cda8, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.0.139:8080/actuator, healthUrl=http://192.168.0.139:8080/actuator/health, serviceUrl=http://192.168.0.139:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-16T12:31:57.765478500Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.0.139:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.0.139:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.0.139:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.0.139:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.0.139:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.0.139:8080/actuator/refresh), env=Endpoint(id=env, url=http://192.168.0.139:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.0.139:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.0.139:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.0.139:8080/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.0.139:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.0.139:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.0.139:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.0.139:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.0.139:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.0.139:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.0.139:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.0.139:8080/actuator/conditions), info=Endpoint(id=info, url=http://192.168.0.139:8080/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -20:32:15.153 [reactor-http-nio-8] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=eb42446a2abf, version=2, registration=Registration(name=cloud-gen, managementUrl=http://192.168.0.139:9202/actuator, healthUrl=http://192.168.0.139:9202/actuator/health, serviceUrl=http://192.168.0.139:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-16T12:31:57.907894600Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.0.139:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.0.139:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.0.139:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.0.139:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.0.139:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.0.139:9202/actuator/refresh), env=Endpoint(id=env, url=http://192.168.0.139:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.0.139:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.0.139:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.0.139:9202/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.0.139:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.0.139:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.0.139:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.0.139:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.0.139:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.0.139:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.0.139:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.0.139:9202/actuator/conditions), info=Endpoint(id=info, url=http://192.168.0.139:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -20:32:15.153 [reactor-http-nio-11] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=2535b89a728f, version=2, registration=Registration(name=cloud-auth, managementUrl=http://192.168.0.139:9500/actuator, healthUrl=http://192.168.0.139:9500/actuator/health, serviceUrl=http://192.168.0.139:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-16T12:31:57.791056Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.0.139:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.0.139:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.0.139:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.0.139:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.0.139:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.0.139:9500/actuator/refresh), env=Endpoint(id=env, url=http://192.168.0.139:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.0.139:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.0.139:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.0.139:9500/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.0.139:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.0.139:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.0.139:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.0.139:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.0.139:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.0.139:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.0.139:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.0.139:9500/actuator/conditions), info=Endpoint(id=info, url=http://192.168.0.139:9500/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -20:32:15.167 [nacos-grpc-client-executor-47.116.173.119-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10336 -20:32:15.167 [nacos-grpc-client-executor-47.116.173.119-41] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.0.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.0.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:15.168 [nacos-grpc-client-executor-47.116.173.119-41] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -20:32:15.168 [nacos-grpc-client-executor-47.116.173.119-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10336 -20:32:16.970 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Receive server push request, request = NotifySubscriberRequest, requestId = 10338 -20:32:16.971 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -20:32:16.971 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -20:32:16.973 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [66c674d0-da65-4185-8499-c5b2f9f53121] Ack server push request, request = NotifySubscriberRequest, requestId = 10338 -20:32:17.249 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:32:17.250 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:32:17.340 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:32:17.341 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:32:17.341 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:32:17.341 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:32:17.341 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:32:17.341 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:32:17.341 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->66c674d0-da65-4185-8499-c5b2f9f53121 -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@12d925a[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 16] -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@56c4d891[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:32:17.342 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726489888301_39.144.43.42_62488 -20:32:17.345 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@16684110[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 44] -20:32:17.345 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->66c674d0-da65-4185-8499-c5b2f9f53121 -20:32:17.345 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:32:17.346 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:32:17.346 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -21:04:37.112 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -21:04:38.578 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -21:04:38.580 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -21:04:38.580 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -21:04:38.645 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -21:04:39.096 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -21:04:40.934 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -21:04:41.153 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -21:04:41.153 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -21:04:41.154 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -21:04:41.157 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -21:04:41.159 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -21:04:41.160 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -21:04:41.346 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 97e26dfc-cd96-4fdc-9855-8d46c03ad1d4 -21:04:41.348 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->97e26dfc-cd96-4fdc-9855-8d46c03ad1d4 -21:04:41.348 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -21:04:41.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -21:04:41.349 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -21:04:41.350 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -21:04:41.350 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -21:04:41.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726491883108_39.144.43.42_63066 -21:04:41.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -21:04:41.562 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Notify connected event to listeners. -21:04:41.562 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801066a20 -21:04:41.562 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -21:04:41.563 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf], preserved.register.source=SPRING_CLOUD}} -21:04:41.639 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.0.139:9101 register finished -21:04:41.705 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -21:04:41.705 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -21:04:41.859 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:41.865 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:41.987 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -21:04:41.988 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -21:04:42.051 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:42.052 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:42.058 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -21:04:42.058 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -21:04:42.128 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:42.129 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:42.133 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -21:04:42.134 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -21:04:42.205 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:42.205 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:42.211 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -21:04:42.211 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -21:04:42.284 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:42.288 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.0.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.0.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:42.297 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -21:04:42.324 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.697 seconds (process running for 9.247) -21:04:42.337 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -21:04:42.338 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -21:04:42.338 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -21:04:42.338 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -21:04:42.339 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -21:04:42.339 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -21:04:42.340 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -21:04:42.340 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -21:04:42.341 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -21:04:42.341 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -21:04:42.342 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -21:04:42.373 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -21:04:42.378 [nacos-grpc-client-executor-47.116.173.119-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10805 -21:04:42.379 [nacos-grpc-client-executor-47.116.173.119-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10805 -21:04:42.576 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10806 -21:04:42.577 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10806 -21:04:42.673 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10807 -21:04:42.674 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10807 -21:04:42.779 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10808 -21:04:42.779 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10808 -21:04:42.874 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10809 -21:04:42.874 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10809 -21:04:59.235 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10810 -21:04:59.235 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.0.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.0.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:59.236 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -21:04:59.236 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10810 -21:04:59.239 [nacos-grpc-client-executor-47.116.173.119-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10812 -21:04:59.239 [nacos-grpc-client-executor-47.116.173.119-27] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.0.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.0.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:59.239 [nacos-grpc-client-executor-47.116.173.119-27] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -21:04:59.240 [nacos-grpc-client-executor-47.116.173.119-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10812 -21:04:59.570 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10814 -21:04:59.571 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.0.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.0.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:04:59.571 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -21:04:59.572 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10814 -21:05:00.200 [reactor-http-nio-8] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=eb42446a2abf, version=2, registration=Registration(name=cloud-gen, managementUrl=http://192.168.0.139:9202/actuator, healthUrl=http://192.168.0.139:9202/actuator/health, serviceUrl=http://192.168.0.139:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-16T13:04:43.025467900Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.0.139:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.0.139:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.0.139:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.0.139:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.0.139:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.0.139:9202/actuator/refresh), env=Endpoint(id=env, url=http://192.168.0.139:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.0.139:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.0.139:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.0.139:9202/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.0.139:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.0.139:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.0.139:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.0.139:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.0.139:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.0.139:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.0.139:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.0.139:9202/actuator/conditions), info=Endpoint(id=info, url=http://192.168.0.139:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -21:05:00.200 [reactor-http-nio-11] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=2535b89a728f, version=2, registration=Registration(name=cloud-auth, managementUrl=http://192.168.0.139:9500/actuator, healthUrl=http://192.168.0.139:9500/actuator/health, serviceUrl=http://192.168.0.139:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-16T13:04:42.348257Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.0.139:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.0.139:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.0.139:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.0.139:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.0.139:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.0.139:9500/actuator/refresh), env=Endpoint(id=env, url=http://192.168.0.139:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.0.139:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.0.139:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.0.139:9500/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.0.139:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.0.139:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.0.139:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.0.139:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.0.139:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.0.139:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.0.139:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.0.139:9500/actuator/conditions), info=Endpoint(id=info, url=http://192.168.0.139:9500/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -21:05:00.200 [reactor-http-nio-10] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=f7985a294d1d, version=1, registration=Registration(name=cloud-monitor, managementUrl=http://192.168.0.139:9101/actuator, healthUrl=http://192.168.0.139:9101/actuator/health, serviceUrl=http://192.168.0.139:9101, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-16T13:04:42.543551700Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.0.139:9101/actuator/health)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -21:05:00.200 [reactor-http-nio-7] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=c84c6d67d6d5, version=2, registration=Registration(name=cloud-file, managementUrl=http://192.168.0.139:9300/actuator, healthUrl=http://192.168.0.139:9300/actuator/health, serviceUrl=http://192.168.0.139:9300, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-16T13:04:42.447424800Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.0.139:9300/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.0.139:9300/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.0.139:9300/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.0.139:9300/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.0.139:9300/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.0.139:9300/actuator/refresh), env=Endpoint(id=env, url=http://192.168.0.139:9300/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.0.139:9300/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.0.139:9300/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.0.139:9300/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.0.139:9300/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.0.139:9300/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.0.139:9300/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.0.139:9300/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.0.139:9300/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.0.139:9300/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.0.139:9300/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.0.139:9300/actuator/conditions), info=Endpoint(id=info, url=http://192.168.0.139:9300/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -21:05:00.201 [reactor-http-nio-9] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a8823c94cda8, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.0.139:8080/actuator, healthUrl=http://192.168.0.139:8080/actuator/health, serviceUrl=http://192.168.0.139:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-16T13:04:42.348257Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.0.139:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.0.139:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.0.139:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.0.139:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.0.139:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.0.139:8080/actuator/refresh), env=Endpoint(id=env, url=http://192.168.0.139:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.0.139:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.0.139:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.0.139:8080/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.0.139:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.0.139:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.0.139:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.0.139:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.0.139:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.0.139:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.0.139:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.0.139:8080/actuator/conditions), info=Endpoint(id=info, url=http://192.168.0.139:8080/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) - at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) - at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) - at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) - at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) - 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:833) -21:05:01.340 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Receive server push request, request = NotifySubscriberRequest, requestId = 10815 -21:05:01.341 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.0.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.0.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:9065:b0b3:86ac:1282:ac1e:a0bf]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -21:05:01.341 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -21:05:01.343 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [97e26dfc-cd96-4fdc-9855-8d46c03ad1d4] Ack server push request, request = NotifySubscriberRequest, requestId = 10815 -21:05:02.284 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -21:05:02.284 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.0.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -21:05:02.366 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -21:05:02.366 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->97e26dfc-cd96-4fdc-9855-8d46c03ad1d4 -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@55134255[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 6] -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7a0bcd67[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -21:05:02.367 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726491883108_39.144.43.42_63066 -21:05:02.372 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@34a6441a[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 32] -21:05:02.372 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->97e26dfc-cd96-4fdc-9855-8d46c03ad1d4 -21:05:02.372 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -21:05:02.373 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -21:05:02.373 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +19:18:01.802 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +19:18:04.337 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] +19:18:04.340 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +19:18:04.340 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +19:18:04.497 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +19:18:05.194 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +19:18:08.062 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] +19:18:08.368 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +19:18:08.369 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +19:18:08.369 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +19:18:08.375 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +19:18:08.380 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +19:18:08.380 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +19:18:08.479 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1ff74480-d05f-4f80-ad48-36860aa2038a +19:18:08.481 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->1ff74480-d05f-4f80-ad48-36860aa2038a +19:18:08.482 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +19:18:08.482 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +19:18:08.483 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +19:18:08.483 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} +19:18:08.484 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +19:18:08.546 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726485489890_117.143.60.138_52396 +19:18:08.546 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +19:18:08.546 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000025e2e3e3ab8 +19:18:08.546 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Notify connected event to listeners. +19:18:08.547 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +19:18:08.547 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.82', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +19:18:08.570 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.82:9101 register finished +19:18:08.592 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +19:18:08.593 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +19:18:08.620 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.82#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.82","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.629 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.82#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.82","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.803 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: +19:18:08.803 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: +19:18:08.816 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.82#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.82","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.817 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.82#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.82","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.822 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +19:18:08.823 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +19:18:08.836 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.82#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.82","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.836 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.82#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.82","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.840 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +19:18:08.841 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +19:18:08.860 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.82#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.82","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.861 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.82#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.82","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.866 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +19:18:08.866 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +19:18:08.894 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.82#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.82","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.898 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.82#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.82","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:08.911 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. +19:18:08.942 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 10.82 seconds (process running for 11.437) +19:18:08.953 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +19:18:08.954 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +19:18:08.954 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one +19:18:08.956 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 +19:18:08.956 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP +19:18:08.957 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one +19:18:08.957 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 +19:18:08.957 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP +19:18:08.959 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one +19:18:08.959 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 +19:18:08.959 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP +19:18:09.000 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +19:18:09.084 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 9841 +19:18:09.089 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 9841 +19:18:09.184 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 9842 +19:18:09.185 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 9842 +19:18:09.386 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 9843 +19:18:09.388 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 9843 +19:18:09.394 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 9844 +19:18:09.395 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 9844 +19:18:09.400 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 9845 +19:18:09.401 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 9845 +19:18:38.976 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +19:18:38.976 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +19:18:38.990 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.82#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.82","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:38.991 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.82#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.82","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +19:18:39.496 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 9849 +19:18:39.497 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 9849 +20:10:54.189 [nacos-grpc-client-executor-47.116.173.119-679] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 10203 +20:10:54.190 [nacos-grpc-client-executor-47.116.173.119-679] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.82#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.82","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +20:10:54.190 [nacos-grpc-client-executor-47.116.173.119-679] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +20:10:54.192 [nacos-grpc-client-executor-47.116.173.119-679] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 10203 +20:10:54.221 [nacos-grpc-client-executor-47.116.173.119-680] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 10205 +20:10:54.221 [nacos-grpc-client-executor-47.116.173.119-680] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.82#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.82","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +20:10:54.221 [nacos-grpc-client-executor-47.116.173.119-680] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +20:10:54.222 [nacos-grpc-client-executor-47.116.173.119-680] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 10205 +20:10:54.420 [nacos-grpc-client-executor-47.116.173.119-681] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 10207 +20:10:54.420 [nacos-grpc-client-executor-47.116.173.119-681] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.82#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.82","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +20:10:54.420 [nacos-grpc-client-executor-47.116.173.119-681] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] +20:10:54.421 [nacos-grpc-client-executor-47.116.173.119-681] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 10207 +20:10:54.522 [nacos-grpc-client-executor-47.116.173.119-682] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Receive server push request, request = NotifySubscriberRequest, requestId = 10209 +20:10:54.522 [nacos-grpc-client-executor-47.116.173.119-682] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.82#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.82","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +20:10:54.525 [nacos-grpc-client-executor-47.116.173.119-682] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +20:10:54.526 [nacos-grpc-client-executor-47.116.173.119-682] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1ff74480-d05f-4f80-ad48-36860aa2038a] Ack server push request, request = NotifySubscriberRequest, requestId = 10209 +20:10:55.808 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +20:10:55.809 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.82', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +20:10:55.823 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +20:10:55.824 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +20:10:55.824 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +20:10:55.826 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->1ff74480-d05f-4f80-ad48-36860aa2038a +20:10:55.827 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2cadbba8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1053] +20:10:55.827 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +20:10:55.827 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@72c6bbce[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +20:10:55.827 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726485489890_117.143.60.138_52396 +20:10:55.829 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1f1af022[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 684] +20:10:55.829 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->1ff74480-d05f-4f80-ad48-36860aa2038a +20:10:55.829 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +20:10:55.830 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +20:10:55.830 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop diff --git a/logs/cloud-visual-monitor/info.log b/logs/cloud-visual-monitor/info.log index e6a1be5..ceefd4d 100644 --- a/logs/cloud-visual-monitor/info.log +++ b/logs/cloud-visual-monitor/info.log @@ -1,348 +1,1011 @@ -14:54:56.518 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -14:54:58.160 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -14:54:58.162 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -14:54:58.162 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -14:54:58.221 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -14:54:58.607 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -14:55:00.638 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -14:55:00.898 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -14:55:00.899 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -14:55:00.899 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -14:55:00.903 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -14:55:00.907 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -14:55:00.908 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -14:55:01.041 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b9624e58-8c41-4b73-bb1c-e219ea70de16 -14:55:01.043 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->b9624e58-8c41-4b73-bb1c-e219ea70de16 -14:55:01.043 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -14:55:01.043 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -14:55:01.044 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -14:55:01.044 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -14:55:01.044 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -14:55:01.272 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556103183_117.136.120.204_26266 -14:55:01.272 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -14:55:01.272 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801077d10 -14:55:01.272 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Notify connected event to listeners. -14:55:01.272 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -14:55:01.273 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -14:55:01.352 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.245.139:9101 register finished -14:55:01.396 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -14:55:01.397 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -14:55:01.437 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.444 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.601 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -14:55:01.601 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -14:55:01.772 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.773 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.779 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -14:55:01.780 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -14:55:01.844 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.845 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.853 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -14:55:01.854 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -14:55:01.914 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.914 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.920 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -14:55:01.920 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -14:55:01.934 [nacos-grpc-client-executor-47.116.173.119-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11791 -14:55:01.935 [nacos-grpc-client-executor-47.116.173.119-14] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11791 -14:55:01.955 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.960 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:01.970 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -14:55:01.990 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 9.246 seconds (process running for 9.818) -14:55:02.001 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -14:55:02.001 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -14:55:02.002 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -14:55:02.003 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -14:55:02.003 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -14:55:02.003 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -14:55:02.004 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -14:55:02.004 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -14:55:02.005 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -14:55:02.005 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -14:55:02.005 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -14:55:02.041 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -14:55:02.234 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11792 -14:55:02.234 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11792 -14:55:02.334 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11793 -14:55:02.334 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11793 -14:55:02.435 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11794 -14:55:02.436 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11794 -14:55:02.537 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11795 -14:55:02.538 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11795 -14:55:32.070 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -14:55:32.070 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -14:55:32.106 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:32.107 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -14:55:32.637 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11800 -14:55:32.638 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11800 -15:06:07.799 [nacos-grpc-client-executor-47.116.173.119-163] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11831 -15:06:07.799 [nacos-grpc-client-executor-47.116.173.119-163] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:06:07.799 [nacos-grpc-client-executor-47.116.173.119-163] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:06:07.800 [nacos-grpc-client-executor-47.116.173.119-163] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11831 -15:06:09.195 [nacos-grpc-client-executor-47.116.173.119-164] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11833 -15:06:09.196 [nacos-grpc-client-executor-47.116.173.119-164] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:06:09.196 [nacos-grpc-client-executor-47.116.173.119-164] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:06:09.198 [nacos-grpc-client-executor-47.116.173.119-164] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11833 -15:06:12.322 [nacos-grpc-client-executor-47.116.173.119-165] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11835 -15:06:12.323 [nacos-grpc-client-executor-47.116.173.119-165] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:06:12.323 [nacos-grpc-client-executor-47.116.173.119-165] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:06:12.324 [nacos-grpc-client-executor-47.116.173.119-165] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11835 -15:06:13.402 [nacos-grpc-client-executor-47.116.173.119-166] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Receive server push request, request = NotifySubscriberRequest, requestId = 11836 -15:06:13.402 [nacos-grpc-client-executor-47.116.173.119-166] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:06:13.403 [nacos-grpc-client-executor-47.116.173.119-166] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -15:06:13.404 [nacos-grpc-client-executor-47.116.173.119-166] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b9624e58-8c41-4b73-bb1c-e219ea70de16] Ack server push request, request = NotifySubscriberRequest, requestId = 11836 -15:06:17.016 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:06:17.017 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:06:17.085 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:06:17.086 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:06:17.086 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:06:17.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:06:17.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:06:17.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:06:17.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:06:17.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:06:17.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:06:17.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:06:17.087 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:06:17.088 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:06:17.089 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b9624e58-8c41-4b73-bb1c-e219ea70de16 -15:06:17.089 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4a8bf355[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 224] -15:06:17.089 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:06:17.089 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@b5727d6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:06:17.090 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556103183_117.136.120.204_26266 -15:06:17.092 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@1b33a91e[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 168] -15:06:17.092 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b9624e58-8c41-4b73-bb1c-e219ea70de16 -15:06:17.092 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:06:17.093 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:06:17.093 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:08:19.692 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:08:21.554 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:08:21.555 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:08:21.556 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:08:21.612 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:08:21.986 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:08:24.038 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:08:24.276 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:08:24.277 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:08:24.277 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:08:24.280 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:08:24.283 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:08:24.284 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:08:24.411 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a -15:08:24.412 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a -15:08:24.413 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:08:24.413 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:08:24.413 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:08:24.414 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:08:24.414 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:08:24.695 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726556906627_117.136.120.204_26280 -15:08:24.696 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:08:24.696 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Notify connected event to listeners. -15:08:24.696 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801066a20 -15:08:24.696 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:08:24.697 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:08:24.746 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.245.139:9101 register finished -15:08:24.796 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:08:24.797 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:08:24.888 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:24.895 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.057 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:08:25.058 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:08:25.104 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.104 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.108 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:08:25.108 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:08:25.213 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.214 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.219 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:08:25.219 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:08:25.300 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.300 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.304 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:08:25.305 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:08:25.364 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.366 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:25.373 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -15:08:25.390 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 9.419 seconds (process running for 9.954) -15:08:25.399 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:08:25.401 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:08:25.401 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -15:08:25.401 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -15:08:25.401 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -15:08:25.402 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -15:08:25.402 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -15:08:25.402 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -15:08:25.403 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -15:08:25.403 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:08:25.405 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -15:08:25.429 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:08:25.453 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 11840 -15:08:25.455 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 11840 -15:08:25.625 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 11841 -15:08:25.626 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 11841 -15:08:25.733 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 11842 -15:08:25.734 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 11842 -15:08:25.838 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 11843 -15:08:25.838 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 11843 -15:08:25.926 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 11844 -15:08:25.927 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 11844 -15:08:55.523 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:08:55.524 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:08:55.555 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:55.556 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:08:56.136 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 11848 -15:08:56.136 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 11848 -15:32:43.967 [nacos-grpc-client-executor-47.116.173.119-324] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 12038 -15:32:43.968 [nacos-grpc-client-executor-47.116.173.119-324] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:32:43.968 [nacos-grpc-client-executor-47.116.173.119-324] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:32:43.969 [nacos-grpc-client-executor-47.116.173.119-324] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 12038 -15:32:43.971 [nacos-grpc-client-executor-47.116.173.119-325] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 12040 -15:32:43.972 [nacos-grpc-client-executor-47.116.173.119-325] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:32:43.972 [nacos-grpc-client-executor-47.116.173.119-325] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:32:43.972 [nacos-grpc-client-executor-47.116.173.119-325] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 12040 -15:32:44.175 [nacos-grpc-client-executor-47.116.173.119-326] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 12043 -15:32:44.176 [nacos-grpc-client-executor-47.116.173.119-326] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:32:44.176 [nacos-grpc-client-executor-47.116.173.119-326] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -15:32:44.177 [nacos-grpc-client-executor-47.116.173.119-326] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 12043 -15:32:44.179 [nacos-grpc-client-executor-47.116.173.119-327] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Receive server push request, request = NotifySubscriberRequest, requestId = 12044 -15:32:44.179 [nacos-grpc-client-executor-47.116.173.119-327] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -15:32:44.180 [nacos-grpc-client-executor-47.116.173.119-327] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -15:32:44.181 [nacos-grpc-client-executor-47.116.173.119-327] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a] Ack server push request, request = NotifySubscriberRequest, requestId = 12044 -15:32:45.467 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:32:45.468 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:32:45.534 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:32:45.534 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:32:45.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:32:45.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:32:45.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:32:45.535 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:32:45.536 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:32:45.536 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:32:45.536 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:32:45.536 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:32:45.536 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:32:45.537 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:32:45.537 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a -15:32:45.538 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5ff3de1[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 485] -15:32:45.538 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:32:45.538 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@67cd5ae8[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:32:45.538 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726556906627_117.136.120.204_26280 -15:32:45.541 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@727547e8[Running, pool size = 8, active threads = 0, queued tasks = 0, completed tasks = 329] -15:32:45.542 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->5fb030d5-3cd8-43ca-aaf2-c4d5026c5a2a -15:32:45.542 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:32:45.542 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:32:45.543 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:32:55.042 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:32:56.391 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:32:56.393 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:32:56.393 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:32:56.446 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:32:56.819 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:32:58.977 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:32:59.326 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:32:59.326 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:32:59.327 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:32:59.331 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:32:59.335 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:32:59.335 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:32:59.503 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 841abb1a-e90d-4a0e-90b2-886378505e18 -15:32:59.505 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->841abb1a-e90d-4a0e-90b2-886378505e18 -15:32:59.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:32:59.505 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:32:59.506 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:32:59.506 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:32:59.507 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:32:59.687 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558381666_117.136.120.204_26604 -15:32:59.687 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Notify connected event to listeners. -15:32:59.687 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:32:59.687 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:32:59.687 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x00000008010694f8 -15:32:59.688 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:32:59.738 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.245.139:9101 register finished -15:32:59.808 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:32:59.809 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:32:59.857 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:32:59.865 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:32:59.869 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:32:59.869 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:32:59.921 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -15:32:59.922 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -15:32:59.924 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:32:59.924 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:32:59.976 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -15:32:59.977 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -15:32:59.978 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:32:59.978 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:33:00.040 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:33:00.040 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:33:00.042 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:33:00.042 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:33:00.090 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:00.091 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:00.270 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:33:00.270 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:33:00.321 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:00.322 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:00.334 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -15:33:00.364 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.487 seconds (process running for 8.998) -15:33:00.376 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:33:00.377 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:33:00.377 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -15:33:00.377 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -15:33:00.377 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -15:33:00.379 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -15:33:00.379 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -15:33:00.379 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -15:33:00.381 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -15:33:00.381 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:33:00.382 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -15:33:00.442 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12047 -15:33:00.442 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:33:00.443 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12047 -15:33:00.447 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12048 -15:33:00.448 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12048 -15:33:00.669 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12049 -15:33:00.669 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12049 -15:33:00.688 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12050 -15:33:00.690 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12050 -15:33:00.693 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12051 -15:33:00.694 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12051 -15:33:00.871 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12052 -15:33:00.871 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12052 -15:33:13.801 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12053 -15:33:13.802 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:13.803 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:13.804 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12053 -15:33:15.269 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12054 -15:33:15.269 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:15.269 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:15.270 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12054 -15:33:16.075 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12055 -15:33:16.076 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:16.077 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:16.078 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12055 -15:33:19.721 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12056 -15:33:19.722 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:19.724 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:33:19.724 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12056 -15:37:51.864 [nacos-grpc-client-executor-47.116.173.119-88] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12064 -15:37:51.865 [nacos-grpc-client-executor-47.116.173.119-88] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:37:51.865 [nacos-grpc-client-executor-47.116.173.119-88] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:37:51.866 [nacos-grpc-client-executor-47.116.173.119-88] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12064 -15:37:53.178 [nacos-grpc-client-executor-47.116.173.119-89] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12066 -15:37:53.179 [nacos-grpc-client-executor-47.116.173.119-89] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:37:53.179 [nacos-grpc-client-executor-47.116.173.119-89] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:37:53.180 [nacos-grpc-client-executor-47.116.173.119-89] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12066 -15:37:56.379 [nacos-grpc-client-executor-47.116.173.119-90] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12068 -15:37:56.379 [nacos-grpc-client-executor-47.116.173.119-90] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:37:56.379 [nacos-grpc-client-executor-47.116.173.119-90] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:37:56.380 [nacos-grpc-client-executor-47.116.173.119-90] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12068 -15:37:58.879 [nacos-grpc-client-executor-47.116.173.119-92] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Receive server push request, request = NotifySubscriberRequest, requestId = 12070 -15:37:58.880 [nacos-grpc-client-executor-47.116.173.119-92] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:37:58.881 [nacos-grpc-client-executor-47.116.173.119-92] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -15:37:58.882 [nacos-grpc-client-executor-47.116.173.119-92] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [841abb1a-e90d-4a0e-90b2-886378505e18] Ack server push request, request = NotifySubscriberRequest, requestId = 12070 -15:38:00.006 [reactor-http-nio-19] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=04e23879bade, version=2, registration=Registration(name=cloud-file, managementUrl=http://192.168.245.139:9300/actuator, healthUrl=http://192.168.245.139:9300/actuator/health, serviceUrl=http://192.168.245.139:9300, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T07:33:00.758057800Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:9300/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:9300/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:9300/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:9300/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:9300/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:9300/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:9300/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:9300/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:9300/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:9300/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:9300/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:9300/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:9300/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:9300/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:9300/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:9300/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:9300/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:9300/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:9300/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /192.168.245.139:9300 +08:15:10.641 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +08:15:13.018 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] +08:15:13.020 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +08:15:13.022 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +08:15:13.091 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +08:15:13.659 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +08:15:16.889 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] +08:15:17.209 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +08:15:17.210 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +08:15:17.210 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +08:15:17.217 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +08:15:17.223 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +08:15:17.223 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +08:15:17.401 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of b4ea47f0-e951-4f53-b8d5-a84f645b6eba +08:15:17.403 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->b4ea47f0-e951-4f53-b8d5-a84f645b6eba +08:15:17.403 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +08:15:17.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +08:15:17.404 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +08:15:17.405 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +08:15:17.405 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +08:15:17.620 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727050517847_117.143.60.138_64031 +08:15:17.620 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify connected event to listeners. +08:15:17.620 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +08:15:17.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +08:15:17.621 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x000001fad83e39b8 +08:15:17.622 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.107', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +08:15:17.646 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.107:9101 register finished +08:15:17.722 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +08:15:17.723 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +08:15:17.751 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:17.766 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:18.044 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +08:15:18.045 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +08:15:18.062 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:18.064 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:18.074 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +08:15:18.074 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +08:15:18.091 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:18.092 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:18.100 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +08:15:18.101 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +08:15:18.141 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:18.142 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:18.161 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. +08:15:18.196 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 11.872 seconds (process running for 12.502) +08:15:18.215 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +08:15:18.216 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +08:15:18.216 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor+DEFAULT_GROUP +08:15:18.218 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 +08:15:18.219 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP +08:15:18.220 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP +08:15:18.221 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 +08:15:18.223 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP +08:15:18.227 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP +08:15:18.228 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 +08:15:18.229 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP +08:15:18.247 [nacos-grpc-client-executor-110.42.213.184-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3460 +08:15:18.249 [nacos-grpc-client-executor-110.42.213.184-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3460 +08:15:18.323 [nacos-grpc-client-executor-110.42.213.184-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3461 +08:15:18.324 [nacos-grpc-client-executor-110.42.213.184-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3461 +08:15:18.430 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +08:15:18.654 [nacos-grpc-client-executor-110.42.213.184-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3462 +08:15:18.662 [nacos-grpc-client-executor-110.42.213.184-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3462 +08:15:18.686 [nacos-grpc-client-executor-110.42.213.184-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3463 +08:15:18.687 [nacos-grpc-client-executor-110.42.213.184-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3463 +08:15:48.221 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +08:15:48.222 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +08:15:48.233 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:48.235 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:48.238 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-carRail, group:DEFAULT_GROUP, clusters: +08:15:48.238 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-carRail, group:DEFAULT_GROUP, cluster: +08:15:48.321 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:48.322 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:15:48.755 [nacos-grpc-client-executor-110.42.213.184-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3466 +08:15:48.756 [nacos-grpc-client-executor-110.42.213.184-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3466 +08:15:48.759 [nacos-grpc-client-executor-110.42.213.184-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3467 +08:15:48.759 [nacos-grpc-client-executor-110.42.213.184-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3467 +08:58:59.373 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +08:59:06.078 [nacos-grpc-client-executor-110.42.213.184-562] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3470 +08:59:06.081 [nacos-grpc-client-executor-110.42.213.184-562] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:06.081 [nacos-grpc-client-executor-110.42.213.184-562] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +08:59:06.082 [nacos-grpc-client-executor-110.42.213.184-562] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3470 +08:59:06.587 [nacos-grpc-client-executor-110.42.213.184-564] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3472 +08:59:06.588 [nacos-grpc-client-executor-110.42.213.184-564] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:06.588 [nacos-grpc-client-executor-110.42.213.184-564] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:06.589 [nacos-grpc-client-executor-110.42.213.184-564] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3472 +08:59:15.303 [nacos-grpc-client-executor-110.42.213.184-565] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3474 +08:59:15.303 [nacos-grpc-client-executor-110.42.213.184-565] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3474 +08:59:48.171 [nacos-grpc-client-executor-110.42.213.184-573] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3477 +08:59:48.171 [nacos-grpc-client-executor-110.42.213.184-573] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:48.172 [nacos-grpc-client-executor-110.42.213.184-573] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +08:59:48.173 [nacos-grpc-client-executor-110.42.213.184-573] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3477 +08:59:53.580 [nacos-grpc-client-executor-110.42.213.184-574] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3479 +08:59:53.580 [nacos-grpc-client-executor-110.42.213.184-574] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:53.580 [nacos-grpc-client-executor-110.42.213.184-574] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +08:59:53.581 [nacos-grpc-client-executor-110.42.213.184-574] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3479 +08:59:55.784 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '78b455a9d6ba' missing in DiscoveryClient services and will be removed. +08:59:55.785 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'ca1ba7b5bb81' missing in DiscoveryClient services and will be removed. +08:59:55.785 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '1a62d93d9101' missing in DiscoveryClient services and will be removed. +08:59:55.785 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +08:59:55.785 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed. +08:59:55.786 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed. +08:59:56.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:00:04.201 [parallel-1] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6fab02a62a90, version=2, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.107:9500/actuator, healthUrl=http://10.113.37.107:9500/actuator/health, serviceUrl=http://10.113.37.107:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T00:15:18.630723200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9500/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9500/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9500/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9500/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:04.201 [parallel-11] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=ca1ba7b5bb81, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8084/actuator, healthUrl=http://10.113.37.107:8084/actuator/health, serviceUrl=http://10.113.37.107:8084, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T00:15:18.630723200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8084/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8084/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8084/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8084/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8084/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8084/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8084/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8084/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8084/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8084/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8084/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8084/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8084/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8084/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8084/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8084/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8084/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8084/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8084/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:00:05.224 [nacos-grpc-client-executor-110.42.213.184-578] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3483 +09:00:05.224 [nacos-grpc-client-executor-110.42.213.184-578] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3483 +09:00:11.175 [nacos-grpc-client-executor-110.42.213.184-579] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3484 +09:00:11.175 [nacos-grpc-client-executor-110.42.213.184-579] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3484 +09:00:14.071 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server healthy check fail, currentConnection = 1727050517847_117.143.60.138_64031 +09:00:14.071 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:14.072 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:14.090 [nacos-grpc-client-executor-110.42.213.184-582] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3485 +09:00:14.091 [nacos-grpc-client-executor-110.42.213.184-582] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3485 +09:00:16.239 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Success to connect a server [110.42.213.184:8848], connectionId = 1727053214690_117.143.60.138_57915 +09:00:16.239 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050517847_117.143.60.138_64031 +09:00:16.239 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050517847_117.143.60.138_64031 +09:00:16.244 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify disconnected event to listeners +09:00:16.244 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify connected event to listeners. +09:00:16.245 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:00:18.495 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:00:18.779 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:00:19.390 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:00:19.602 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:00:19.602 [nacos-grpc-client-executor-110.42.213.184-594] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3489 +09:00:19.602 [nacos-grpc-client-executor-110.42.213.184-594] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3489 +09:00:20.292 [nacos-grpc-client-executor-110.42.213.184-595] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3491 +09:00:20.293 [nacos-grpc-client-executor-110.42.213.184-595] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3491 +09:00:21.848 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:00:22.612 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:22.612 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:22.612 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:25.614 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:00:25.614 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:25.614 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:25.614 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:28.234 [nacos-grpc-client-executor-110.42.213.184-596] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3492 +09:00:28.235 [nacos-grpc-client-executor-110.42.213.184-596] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3492 +09:00:28.236 [nacos-grpc-client-executor-110.42.213.184-598] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3493 +09:00:28.236 [nacos-grpc-client-executor-110.42.213.184-598] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3493 +09:00:28.628 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:00:28.628 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:28.628 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:28.628 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:29.122 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:00:29.122 [nacos-grpc-client-executor-110.42.213.184-601] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3494 +09:00:29.122 [nacos-grpc-client-executor-110.42.213.184-601] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3494 +09:00:31.641 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:00:34.652 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:34.652 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:34.653 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:37.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:00:37.656 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:00:38.231 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:38.728 [nacos-grpc-client-executor-110.42.213.184-607] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3500 +09:00:38.729 [nacos-grpc-client-executor-110.42.213.184-607] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:00:38.729 [nacos-grpc-client-executor-110.42.213.184-607] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +09:00:38.729 [nacos-grpc-client-executor-110.42.213.184-607] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3500 +09:00:39.045 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Server healthy check fail, currentConnection = 1727050510175_117.143.60.138_64010 +09:00:39.045 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:39.046 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:41.233 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:41.234 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:42.071 [nacos-grpc-client-executor-110.42.213.184-609] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3501 +09:00:42.071 [nacos-grpc-client-executor-110.42.213.184-609] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3501 +09:00:42.168 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:42.858 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:00:44.246 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:44.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053244719_117.143.60.138_57996 +09:00:44.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727050510175_117.143.60.138_64010 +09:00:44.620 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727050510175_117.143.60.138_64010 +09:00:44.620 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify disconnected event to listeners +09:00:44.620 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] DisConnected,clear listen context... +09:00:44.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify connected event to listeners. +09:00:44.621 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Connected,notify listen context... +09:00:47.259 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:47.260 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:50.266 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:50.266 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:50.266 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:53.275 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:53.275 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:53.275 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:56.281 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:56.281 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:56.281 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:59.282 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:00:59.282 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:00:59.282 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:00:59.594 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:59.594 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:00:59.906 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:00:59.906 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:02.291 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:02.291 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:02.291 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:02.712 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:03.023 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:05.302 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:05.302 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:05.302 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:05.723 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:05.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:06.035 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:06.238 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:06.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Success to connect a server [110.42.213.184:8848], connectionId = 1727053266735_117.143.60.138_58100 +09:01:06.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053214690_117.143.60.138_57915 +09:01:06.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053214690_117.143.60.138_57915 +09:01:06.583 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify disconnected event to listeners +09:01:06.584 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify connected event to listeners. +09:01:06.584 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:01:07.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053267960_117.143.60.138_58102 +09:01:07.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053244719_117.143.60.138_57996 +09:01:07.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053244719_117.143.60.138_57996 +09:01:07.806 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify disconnected event to listeners +09:01:07.806 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] DisConnected,clear listen context... +09:01:07.806 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify connected event to listeners. +09:01:07.806 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Connected,notify listen context... +09:01:08.303 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:08.732 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:01:08.734 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:09.252 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:01:09.252 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:09.692 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:09.692 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:09.692 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:09.692 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:09.692 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:09.692 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:11.858 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:12.372 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:12.696 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:12.696 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:12.696 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:12.696 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:12.696 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:12.696 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:12.696 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:14.864 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:15.068 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:15.379 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:15.584 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:15.708 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:15.708 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:15.708 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:15.708 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:15.708 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:15.708 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:15.708 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:18.083 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:18.394 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:18.602 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:18.711 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:18.711 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:18.711 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:18.711 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:18.711 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:18.711 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:18.711 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:18.915 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:21.404 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:21.715 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:21.715 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:21.715 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:21.715 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:21.715 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:21.715 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:21.715 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:21.810 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:21.918 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:22.321 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:24.725 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:24.725 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:24.725 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:24.725 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:24.725 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:24.725 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:24.725 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:24.819 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:25.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:25.332 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:25.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:27.735 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:27.735 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:27.735 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:27.735 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:27.735 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:27.735 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:27.735 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:28.342 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:28.860 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:28.952 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:29.466 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:30.744 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:30.744 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:30.744 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:30.744 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:30.744 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:30.744 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:30.744 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:31.068 [nacos-grpc-client-executor-110.42.213.184-650] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = ClientDetectionRequest, requestId = 3513 +09:01:31.068 [nacos-grpc-client-executor-110.42.213.184-650] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = ClientDetectionRequest, requestId = 3513 +09:01:31.965 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:32.478 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:32.667 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:33.182 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:33.758 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:33.758 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:33.758 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:33.758 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:33.758 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:33.758 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:33.758 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:33.921 [nacos-grpc-client-executor-110.42.213.184-586] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Receive server push request, request = ClientDetectionRequest, requestId = 3514 +09:01:33.921 [nacos-grpc-client-executor-110.42.213.184-586] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Ack server push request, request = ClientDetectionRequest, requestId = 3514 +09:01:33.921 [nacos-grpc-client-executor-110.42.213.184-586] INFO c.a.n.c.r.c.g.GrpcClient - [printIfInfoEnabled,63] - [1727053267960_117.143.60.138_58102]Ignore complete event,isRunning:false,isAbandon=false +09:01:35.683 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:36.197 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:36.496 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:36.762 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:36.762 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:36.762 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:36.762 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:36.762 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:36.762 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:36.762 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:37.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:39.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:39.770 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:39.770 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:39.770 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:39.770 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:39.770 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:39.770 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:39.770 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:40.018 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:40.405 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:40.919 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:42.776 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:42.776 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:42.776 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:42.776 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:42.776 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:42.776 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:42.776 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:43.414 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:43.930 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 9 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:44.429 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:44.943 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:45.787 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:45.787 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:45.787 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:45.787 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:45.787 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:45.787 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:45.787 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:47.444 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:47.958 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 10 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:01:48.550 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:48.798 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:48.798 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:48.798 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:48.798 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:48.798 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:48.798 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:48.798 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:49.065 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:01:49.514 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Success to connect a server [110.42.213.184:8848], connectionId = 1727053309714_117.143.60.138_58283 +09:01:49.514 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053266735_117.143.60.138_58100 +09:01:49.514 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053266735_117.143.60.138_58100 +09:01:49.514 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify disconnected event to listeners +09:01:49.514 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify connected event to listeners. +09:01:49.514 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:01:49.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053309953_117.143.60.138_58279 +09:01:49.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053267960_117.143.60.138_58102 +09:01:49.780 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053267960_117.143.60.138_58102 +09:01:49.780 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify disconnected event to listeners +09:01:49.780 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] DisConnected,clear listen context... +09:01:49.780 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify connected event to listeners. +09:01:49.780 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Connected,notify listen context... +09:01:51.808 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:01:51.908 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:01:54.232 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:01:54.233 [nacos-grpc-client-executor-110.42.213.184-674] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3518 +09:01:54.233 [nacos-grpc-client-executor-110.42.213.184-674] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3518 +09:01:54.919 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:01:55.100 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:01:55.275 [nacos-grpc-client-executor-110.42.213.184-676] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3520 +09:01:55.275 [nacos-grpc-client-executor-110.42.213.184-676] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3520 +09:01:56.012 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:01:56.528 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:01:56.536 [nacos-grpc-client-executor-110.42.213.184-679] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3522 +09:01:56.536 [nacos-grpc-client-executor-110.42.213.184-679] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:56.536 [nacos-grpc-client-executor-110.42.213.184-679] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:01:56.536 [nacos-grpc-client-executor-110.42.213.184-679] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3522 +09:01:56.658 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:01:56.745 [nacos-grpc-client-executor-110.42.213.184-681] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3523 +09:01:56.745 [nacos-grpc-client-executor-110.42.213.184-681] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3523 +09:01:57.284 [nacos-grpc-client-executor-110.42.213.184-683] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3524 +09:01:57.284 [nacos-grpc-client-executor-110.42.213.184-683] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3524 +09:01:58.180 [nacos-grpc-client-executor-110.42.213.184-685] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3525 +09:01:58.180 [nacos-grpc-client-executor-110.42.213.184-685] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3525 +09:02:03.258 [nacos-grpc-client-executor-110.42.213.184-686] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3526 +09:02:03.258 [nacos-grpc-client-executor-110.42.213.184-686] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3526 +09:02:03.630 [nacos-grpc-client-executor-110.42.213.184-687] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3527 +09:02:03.631 [nacos-grpc-client-executor-110.42.213.184-687] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3527 +09:02:07.190 [parallel-5] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=78b455a9d6ba, version=4, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.107:9707/actuator, healthUrl=http://10.113.37.107:9707/actuator/health, serviceUrl=http://10.113.37.107:9707, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-23T01:01:58.181789700Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:9707/actuator/health)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:07.190 [parallel-7] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=ca1ba7b5bb81, version=4, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8084/actuator, healthUrl=http://10.113.37.107:8084/actuator/health, serviceUrl=http://10.113.37.107:8084, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-23T01:01:58.182795700Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:8084/actuator/health)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:09.264 [nacos-grpc-client-executor-110.42.213.184-688] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3528 +09:02:09.264 [nacos-grpc-client-executor-110.42.213.184-688] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3528 +09:02:09.534 [nacos-grpc-client-executor-110.42.213.184-689] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3529 +09:02:09.535 [nacos-grpc-client-executor-110.42.213.184-689] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3529 +09:02:13.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:13.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:14.211 [parallel-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=ca1ba7b5bb81, version=4, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8084/actuator, healthUrl=http://10.113.37.107:8084/actuator/health, serviceUrl=http://10.113.37.107:8084, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-23T01:01:58.182795700Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:8084/actuator/health)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:16.814 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:19.822 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:20.023 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:23.039 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:23.349 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:26.363 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:26.768 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:28.628 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '78b455a9d6ba' missing in DiscoveryClient services and will be removed. +09:02:28.629 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'ca1ba7b5bb81' missing in DiscoveryClient services and will be removed. +09:02:28.629 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '1a62d93d9101' missing in DiscoveryClient services and will be removed. +09:02:28.629 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +09:02:28.629 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed. +09:02:28.629 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed. +09:02:29.781 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:30.295 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:33.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:33.917 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:35.646 [parallel-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=6, registration=Registration(name=cloud-carRail, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-23T01:02:01.198829600Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:02:36.926 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 6 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:37.627 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:40.637 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 7 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:41.445 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:44.461 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Fail to connect server, after trying 8 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:45.364 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:46.752 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Success to connect a server [110.42.213.184:8848], connectionId = 1727053366463_117.143.60.138_58542 +09:02:46.752 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053309714_117.143.60.138_58283 +09:02:46.752 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053309714_117.143.60.138_58283 +09:02:46.752 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify disconnected event to listeners +09:02:46.752 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify connected event to listeners. +09:02:46.752 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:02:48.144 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:02:49.470 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Server healthy check fail, currentConnection = 1727053309953_117.143.60.138_58279 +09:02:49.470 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:02:49.470 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:51.155 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:02:51.155 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:02:51.155 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:02:51.155 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:02:51.155 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:02:51.156 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:02:52.589 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:54.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:02:54.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:02:54.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:02:54.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:02:54.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:02:54.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:02:54.166 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:02:54.698 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:02:55.598 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:55.800 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:02:57.182 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:02:57.311 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:02:57.422 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:02:57.548 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:02:58.080 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:02:58.080 [nacos-grpc-client-executor-110.42.213.184-737] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3547 +09:02:58.081 [nacos-grpc-client-executor-110.42.213.184-737] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3547 +09:02:58.803 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:02:59.114 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:01.094 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:03:01.094 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:03:02.125 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:03:02.533 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:03:03.749 [nacos-grpc-client-executor-110.42.213.184-738] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3548 +09:03:03.750 [nacos-grpc-client-executor-110.42.213.184-738] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3548 +09:03:03.751 [nacos-grpc-client-executor-110.42.213.184-739] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3549 +09:03:03.751 [nacos-grpc-client-executor-110.42.213.184-739] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3549 +09:03:04.064 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053384267_117.143.60.138_51262 +09:03:04.064 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053309953_117.143.60.138_58279 +09:03:04.064 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053309953_117.143.60.138_58279 +09:03:04.064 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify disconnected event to listeners +09:03:04.064 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] DisConnected,clear listen context... +09:03:04.064 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify connected event to listeners. +09:03:04.064 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Connected,notify listen context... +09:03:04.096 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:03:04.096 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:03:04.096 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:03:07.107 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:03:07.107 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:03:07.107 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:03:08.993 [nacos-grpc-client-executor-110.42.213.184-742] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3550 +09:03:08.994 [nacos-grpc-client-executor-110.42.213.184-742] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3550 +09:03:08.995 [nacos-grpc-client-executor-110.42.213.184-745] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3552 +09:03:08.996 [nacos-grpc-client-executor-110.42.213.184-745] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:08.996 [nacos-grpc-client-executor-110.42.213.184-745] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +09:03:08.997 [nacos-grpc-client-executor-110.42.213.184-745] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3552 +09:03:08.998 [nacos-grpc-client-executor-110.42.213.184-746] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3554 +09:03:08.998 [nacos-grpc-client-executor-110.42.213.184-746] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3554 +09:03:08.999 [nacos-grpc-client-executor-110.42.213.184-747] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3556 +09:03:08.999 [nacos-grpc-client-executor-110.42.213.184-747] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3556 +09:03:08.999 [nacos-grpc-client-executor-110.42.213.184-748] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3557 +09:03:09.001 [nacos-grpc-client-executor-110.42.213.184-748] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3557 +09:03:09.108 [nacos-grpc-client-executor-110.42.213.184-749] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3558 +09:03:09.108 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:03:09.108 [nacos-grpc-client-executor-110.42.213.184-749] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3558 +09:03:10.117 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:03:10.922 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:03:13.129 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:03:13.129 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:03:13.884 [nacos-grpc-client-executor-110.42.213.184-751] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3559 +09:03:13.884 [nacos-grpc-client-executor-110.42.213.184-751] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3559 +09:03:16.135 [nacos-grpc-client-executor-110.42.213.184-753] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3560 +09:03:16.135 [nacos-grpc-client-executor-110.42.213.184-753] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3560 +09:03:16.143 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:03:16.143 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:03:16.143 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:03:18.057 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:03:19.152 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:03:19.152 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:03:19.152 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:03:21.931 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:03:22.160 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:03:22.894 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:03:25.343 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:03:25.343 [nacos-grpc-client-executor-110.42.213.184-760] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3561 +09:03:25.343 [nacos-grpc-client-executor-110.42.213.184-760] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3561 +09:03:27.457 [nacos-grpc-client-executor-110.42.213.184-762] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3562 +09:03:27.458 [nacos-grpc-client-executor-110.42.213.184-762] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3562 +09:03:44.706 [nacos-grpc-client-executor-110.42.213.184-766] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3563 +09:03:44.706 [nacos-grpc-client-executor-110.42.213.184-766] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:44.706 [nacos-grpc-client-executor-110.42.213.184-766] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:03:44.707 [nacos-grpc-client-executor-110.42.213.184-766] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3563 +09:03:48.183 [nacos-grpc-client-executor-110.42.213.184-768] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3565 +09:03:48.183 [nacos-grpc-client-executor-110.42.213.184-768] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:48.184 [nacos-grpc-client-executor-110.42.213.184-768] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:48.186 [nacos-grpc-client-executor-110.42.213.184-768] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3565 +09:03:50.910 [nacos-grpc-client-executor-110.42.213.184-769] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3567 +09:03:50.911 [nacos-grpc-client-executor-110.42.213.184-769] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:50.911 [nacos-grpc-client-executor-110.42.213.184-769] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:50.911 [nacos-grpc-client-executor-110.42.213.184-769] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3567 +09:03:58.779 [nacos-grpc-client-executor-110.42.213.184-770] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3569 +09:03:58.779 [nacos-grpc-client-executor-110.42.213.184-770] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:03:58.779 [nacos-grpc-client-executor-110.42.213.184-770] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:03:58.780 [nacos-grpc-client-executor-110.42.213.184-770] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3569 +09:04:02.305 [nacos-grpc-client-executor-110.42.213.184-772] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3571 +09:04:02.306 [nacos-grpc-client-executor-110.42.213.184-772] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:02.306 [nacos-grpc-client-executor-110.42.213.184-772] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:02.306 [nacos-grpc-client-executor-110.42.213.184-772] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3571 +09:04:08.720 [nacos-grpc-client-executor-110.42.213.184-775] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3574 +09:04:08.721 [nacos-grpc-client-executor-110.42.213.184-775] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:08.721 [nacos-grpc-client-executor-110.42.213.184-775] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:04:08.722 [nacos-grpc-client-executor-110.42.213.184-775] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3574 +09:04:16.139 [nacos-grpc-client-executor-110.42.213.184-776] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3576 +09:04:16.140 [nacos-grpc-client-executor-110.42.213.184-776] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:16.140 [nacos-grpc-client-executor-110.42.213.184-776] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:16.141 [nacos-grpc-client-executor-110.42.213.184-776] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3576 +09:04:17.679 [nacos-grpc-client-executor-110.42.213.184-777] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3578 +09:04:17.680 [nacos-grpc-client-executor-110.42.213.184-777] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3578 +09:04:27.966 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Server healthy check fail, currentConnection = 1727053384267_117.143.60.138_51262 +09:04:27.966 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:04:27.966 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:31.091 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:34.093 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:34.295 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:37.303 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:37.618 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:40.632 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:41.040 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:44.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:44.569 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:45.333 [nacos-grpc-client-executor-110.42.213.184-786] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3582 +09:04:45.333 [nacos-grpc-client-executor-110.42.213.184-786] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:45.333 [nacos-grpc-client-executor-110.42.213.184-786] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:04:45.334 [nacos-grpc-client-executor-110.42.213.184-786] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3582 +09:04:45.335 [nacos-grpc-client-executor-110.42.213.184-789] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3584 +09:04:45.335 [nacos-grpc-client-executor-110.42.213.184-789] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:45.337 [nacos-grpc-client-executor-110.42.213.184-789] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:45.337 [nacos-grpc-client-executor-110.42.213.184-789] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3584 +09:04:47.582 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '110.42.213.184', server main port = 8848}, error = unknown +09:04:48.191 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:04:49.111 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727053488861_117.143.60.138_51573 +09:04:49.111 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053384267_117.143.60.138_51262 +09:04:49.111 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053384267_117.143.60.138_51262 +09:04:49.111 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify disconnected event to listeners +09:04:49.111 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] DisConnected,clear listen context... +09:04:49.111 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Notify connected event to listeners. +09:04:49.112 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [95a0fdf7-0b92-4e90-a751-5d64a9fdd951_config-0] Connected,notify listen context... +09:04:50.267 [nacos-grpc-client-executor-110.42.213.184-791] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3586 +09:04:50.268 [nacos-grpc-client-executor-110.42.213.184-791] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:50.268 [nacos-grpc-client-executor-110.42.213.184-791] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:04:50.268 [nacos-grpc-client-executor-110.42.213.184-791] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3586 +09:04:51.231 [nacos-grpc-client-executor-110.42.213.184-792] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3588 +09:04:51.232 [nacos-grpc-client-executor-110.42.213.184-792] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:51.232 [nacos-grpc-client-executor-110.42.213.184-792] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:04:51.232 [nacos-grpc-client-executor-110.42.213.184-792] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3588 +09:05:15.638 [parallel-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6fab02a62a90, version=10, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.107:9500/actuator, healthUrl=http://10.113.37.107:9500/actuator/health, serviceUrl=http://10.113.37.107:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:03:35.689343300Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9500/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9500/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9500/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9500/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:15.638 [parallel-5] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=78b455a9d6ba, version=11, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.107:9707/actuator, healthUrl=http://10.113.37.107:9707/actuator/health, serviceUrl=http://10.113.37.107:9707, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:03:35.361210700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9707/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9707/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9707/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9707/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9707/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9707/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9707/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9707/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9707/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9707/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9707/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9707/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9707/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9707/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9707/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9707/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9707/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9707/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9707/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:35.652 [parallel-14] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=ca1ba7b5bb81, version=11, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8084/actuator, healthUrl=http://10.113.37.107:8084/actuator/health, serviceUrl=http://10.113.37.107:8084, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:03:35.501251400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8084/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8084/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8084/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8084/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8084/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8084/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8084/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8084/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8084/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8084/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8084/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8084/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8084/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8084/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8084/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8084/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8084/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8084/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8084/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:05:36.297 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '78b455a9d6ba' missing in DiscoveryClient services and will be removed. +09:05:36.298 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'ca1ba7b5bb81' missing in DiscoveryClient services and will be removed. +09:05:36.298 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '1a62d93d9101' missing in DiscoveryClient services and will be removed. +09:05:36.298 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +09:05:36.298 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed. +09:05:36.298 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed. +09:05:43.996 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:05:44.485 [nacos-grpc-client-executor-110.42.213.184-809] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3591 +09:05:44.486 [nacos-grpc-client-executor-110.42.213.184-809] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3591 +09:06:10.853 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:06:36.840 [nacos-grpc-client-executor-110.42.213.184-820] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3594 +09:06:36.841 [nacos-grpc-client-executor-110.42.213.184-820] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:36.842 [nacos-grpc-client-executor-110.42.213.184-820] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:06:36.844 [nacos-grpc-client-executor-110.42.213.184-820] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3594 +09:06:39.084 [nacos-grpc-client-executor-110.42.213.184-821] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3596 +09:06:39.084 [nacos-grpc-client-executor-110.42.213.184-821] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:39.084 [nacos-grpc-client-executor-110.42.213.184-821] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:39.086 [nacos-grpc-client-executor-110.42.213.184-821] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3596 +09:06:50.688 [nacos-grpc-client-executor-110.42.213.184-825] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3598 +09:06:50.689 [nacos-grpc-client-executor-110.42.213.184-825] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:50.689 [nacos-grpc-client-executor-110.42.213.184-825] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:06:50.691 [nacos-grpc-client-executor-110.42.213.184-825] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3598 +09:06:52.655 [nacos-grpc-client-executor-110.42.213.184-826] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3600 +09:06:52.655 [nacos-grpc-client-executor-110.42.213.184-826] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:52.655 [nacos-grpc-client-executor-110.42.213.184-826] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:06:52.656 [nacos-grpc-client-executor-110.42.213.184-826] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3600 +09:07:05.585 [nacos-grpc-client-executor-110.42.213.184-828] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3602 +09:07:05.585 [nacos-grpc-client-executor-110.42.213.184-828] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:05.585 [nacos-grpc-client-executor-110.42.213.184-828] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:07:05.587 [nacos-grpc-client-executor-110.42.213.184-828] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3602 +09:07:05.588 [nacos-grpc-client-executor-110.42.213.184-830] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3604 +09:07:05.588 [nacos-grpc-client-executor-110.42.213.184-830] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:05.589 [nacos-grpc-client-executor-110.42.213.184-830] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:07:05.589 [nacos-grpc-client-executor-110.42.213.184-830] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3604 +09:07:06.608 [nacos-grpc-client-executor-110.42.213.184-831] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3606 +09:07:06.609 [nacos-grpc-client-executor-110.42.213.184-831] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3606 +09:07:40.152 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '78b455a9d6ba' missing in DiscoveryClient services and will be removed. +09:07:40.153 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'ca1ba7b5bb81' missing in DiscoveryClient services and will be removed. +09:07:40.153 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '1a62d93d9101' missing in DiscoveryClient services and will be removed. +09:07:40.153 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +09:07:40.153 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed. +09:07:40.153 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed. +09:07:44.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server healthy check fail, currentConnection = 1727053366463_117.143.60.138_58542 +09:07:44.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:07:44.054 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:07:45.640 [parallel-16] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=ca1ba7b5bb81, version=16, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8084/actuator, healthUrl=http://10.113.37.107:8084/actuator/health, serviceUrl=http://10.113.37.107:8084, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:06:39.703967900Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8084/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8084/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8084/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8084/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8084/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8084/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8084/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8084/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8084/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8084/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8084/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8084/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8084/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8084/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8084/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8084/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8084/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8084/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8084/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:07:47.171 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:07:47.700 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Success to connect a server [110.42.213.184:8848], connectionId = 1727053667906_117.143.60.138_64284 +09:07:47.700 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053366463_117.143.60.138_58542 +09:07:47.700 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053366463_117.143.60.138_58542 +09:07:47.700 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify disconnected event to listeners +09:07:47.700 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Notify connected event to listeners. +09:07:47.700 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:07:49.258 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor +09:07:50.104 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Server check success, currentServer is 110.42.213.184:8848 +09:07:50.249 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# +09:07:50.407 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:07:50.975 [nacos-grpc-client-executor-110.42.213.184-853] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3609 +09:07:50.976 [nacos-grpc-client-executor-110.42.213.184-853] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3609 +09:07:51.592 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# +09:07:51.737 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# +09:07:51.926 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# +09:07:52.094 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-carRail# +09:07:52.198 [nacos-grpc-client-executor-110.42.213.184-858] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3611 +09:07:52.198 [nacos-grpc-client-executor-110.42.213.184-858] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3611 +09:07:52.350 [nacos-grpc-client-executor-110.42.213.184-860] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3613 +09:07:52.350 [nacos-grpc-client-executor-110.42.213.184-860] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3613 +09:07:52.352 [nacos-grpc-client-executor-110.42.213.184-861] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3612 +09:07:52.352 [nacos-grpc-client-executor-110.42.213.184-861] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3612 +09:07:52.425 [nacos-grpc-client-executor-110.42.213.184-862] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3615 +09:07:52.425 [nacos-grpc-client-executor-110.42.213.184-862] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3615 +09:07:52.810 [nacos-grpc-client-executor-110.42.213.184-863] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3616 +09:07:52.811 [nacos-grpc-client-executor-110.42.213.184-863] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3616 +09:07:57.938 [nacos-grpc-client-executor-110.42.213.184-864] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3617 +09:07:57.938 [nacos-grpc-client-executor-110.42.213.184-864] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3617 +09:08:20.072 [parallel-10] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6fab02a62a90, version=18, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.107:9500/actuator, healthUrl=http://10.113.37.107:9500/actuator/health, serviceUrl=http://10.113.37.107:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-23T01:08:11.071025100Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:9500/actuator/health)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:08:22.712 [nacos-grpc-client-executor-110.42.213.184-870] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3619 +09:08:22.713 [nacos-grpc-client-executor-110.42.213.184-870] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:08:22.713 [nacos-grpc-client-executor-110.42.213.184-870] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:08:22.715 [nacos-grpc-client-executor-110.42.213.184-870] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3619 +09:08:24.480 [nacos-grpc-client-executor-110.42.213.184-871] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3621 +09:08:24.480 [nacos-grpc-client-executor-110.42.213.184-871] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:08:24.480 [nacos-grpc-client-executor-110.42.213.184-871] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:08:24.481 [nacos-grpc-client-executor-110.42.213.184-871] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3621 +09:08:25.645 [parallel-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=6fab02a62a90, version=18, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.107:9500/actuator, healthUrl=http://10.113.37.107:9500/actuator/health, serviceUrl=http://10.113.37.107:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-23T01:08:11.071025100Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:9500/actuator/health)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:09:47.911 [parallel-6] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=ca1ba7b5bb81, version=20, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8084/actuator, healthUrl=http://10.113.37.107:8084/actuator/health, serviceUrl=http://10.113.37.107:8084, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:08:11.246920Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8084/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8084/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8084/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8084/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8084/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8084/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8084/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8084/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8084/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8084/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8084/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8084/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8084/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8084/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8084/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8084/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8084/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8084/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8084/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +09:10:11.868 [nacos-grpc-client-executor-110.42.213.184-892] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3625 +09:10:11.868 [nacos-grpc-client-executor-110.42.213.184-892] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:11.868 [nacos-grpc-client-executor-110.42.213.184-892] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +09:10:11.869 [nacos-grpc-client-executor-110.42.213.184-892] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3625 +09:10:11.969 [nacos-grpc-client-executor-110.42.213.184-893] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3627 +09:10:11.970 [nacos-grpc-client-executor-110.42.213.184-893] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:11.970 [nacos-grpc-client-executor-110.42.213.184-893] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:10:11.971 [nacos-grpc-client-executor-110.42.213.184-893] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3627 +09:10:12.057 [nacos-grpc-client-executor-110.42.213.184-894] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3629 +09:10:12.057 [nacos-grpc-client-executor-110.42.213.184-894] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:12.057 [nacos-grpc-client-executor-110.42.213.184-894] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:10:12.058 [nacos-grpc-client-executor-110.42.213.184-894] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3629 +09:10:12.278 [nacos-grpc-client-executor-110.42.213.184-895] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Receive server push request, request = NotifySubscriberRequest, requestId = 3631 +09:10:12.278 [nacos-grpc-client-executor-110.42.213.184-895] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:12.278 [nacos-grpc-client-executor-110.42.213.184-895] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +09:10:12.279 [nacos-grpc-client-executor-110.42.213.184-895] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [b4ea47f0-e951-4f53-b8d5-a84f645b6eba] Ack server push request, request = NotifySubscriberRequest, requestId = 3631 +09:10:13.278 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +09:10:13.278 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.107', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +09:10:13.408 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +09:10:13.409 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +09:10:13.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +09:10:13.410 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->b4ea47f0-e951-4f53-b8d5-a84f645b6eba +09:10:13.411 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@5b563881[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1082] +09:10:13.412 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +09:10:13.412 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@44eb404[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +09:10:13.412 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053667906_117.143.60.138_64284 +09:10:13.412 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4c71f096[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 897] +09:10:13.412 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->b4ea47f0-e951-4f53-b8d5-a84f645b6eba +09:10:13.412 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +09:10:13.412 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +09:10:13.413 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop +09:10:49.382 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" +09:10:52.259 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] +09:10:52.262 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] +09:10:52.262 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] +09:10:52.394 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext +09:10:53.249 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. +09:10:56.876 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] +09:10:57.166 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null +09:10:57.167 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null +09:10:57.168 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null +09:10:57.178 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource +09:10:57.183 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. +09:10:57.184 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. +09:10:57.441 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 32f9a1da-74e0-4d9b-841e-1522e71c992d +09:10:57.444 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->32f9a1da-74e0-4d9b-841e-1522e71c992d +09:10:57.444 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager +09:10:57.445 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService +09:10:57.446 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler +09:10:57.448 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Try to connect to server on start up, server: {serverIp = '110.42.213.184', server main port = 8848} +09:10:57.449 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:10:58.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Success to connect to server [110.42.213.184:8848] on start up, connectionId = 1727053858187_117.143.60.138_55876 +09:10:58.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler +09:10:58.094 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Notify connected event to listeners. +09:10:58.094 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x00000174013e2588 +09:10:58.095 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect +09:10:58.096 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] public registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.107', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} +09:10:58.268 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.107:9101 register finished +09:10:58.902 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: +09:10:58.903 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: +09:10:59.900 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:10:59.907 [nacos-grpc-client-executor-110.42.213.184-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3637 +09:10:59.911 [nacos-grpc-client-executor-110.42.213.184-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3637 +09:10:59.912 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:00.089 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: +09:11:00.089 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: +09:11:00.303 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:11:00.304 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +09:11:00.305 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: +09:11:00.305 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: +09:11:00.450 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# +09:11:00.461 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] +09:11:00.462 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] +09:11:00.466 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-carRail, group:DEFAULT_GROUP, clusters: +09:11:00.467 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-carRail, group:DEFAULT_GROUP, cluster: +09:11:00.723 [nacos-grpc-client-executor-110.42.213.184-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3638 +09:11:00.723 [nacos-grpc-client-executor-110.42.213.184-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3638 +09:11:01.328 [nacos-grpc-client-executor-110.42.213.184-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3639 +09:11:01.328 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:11:01.329 [nacos-grpc-client-executor-110.42.213.184-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3639 +09:11:01.329 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:11:01.330 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: +09:11:01.330 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: +09:11:01.541 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:01.542 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:01.551 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: +09:11:01.552 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: +09:11:01.642 [nacos-grpc-client-executor-110.42.213.184-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3640 +09:11:01.643 [nacos-grpc-client-executor-110.42.213.184-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3640 +09:11:01.740 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:01.741 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"ip":"10.113.37.107","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:01.759 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. +09:11:01.812 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 19.843 seconds (process running for 20.438) +09:11:01.833 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis +09:11:01.834 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true +09:11:01.836 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor+DEFAULT_GROUP +09:11:01.839 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 +09:11:01.840 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP +09:11:01.841 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP +09:11:01.841 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 +09:11:01.842 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP +09:11:01.843 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-110.42.213.184_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP +09:11:01.843 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-110.42.213.184_8848] [add-listener] ok, tenant=, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 +09:11:01.844 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP +09:11:01.896 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' +09:11:03.835 [nacos-grpc-client-executor-110.42.213.184-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3641 +09:11:03.836 [nacos-grpc-client-executor-110.42.213.184-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3641 +09:11:03.839 [nacos-grpc-client-executor-110.42.213.184-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3642 +09:11:03.840 [nacos-grpc-client-executor-110.42.213.184-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3642 +09:11:23.444 [nacos-grpc-client-executor-110.42.213.184-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3643 +09:11:23.445 [nacos-grpc-client-executor-110.42.213.184-35] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:23.447 [nacos-grpc-client-executor-110.42.213.184-35] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:23.448 [nacos-grpc-client-executor-110.42.213.184-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3643 +09:11:36.867 [nacos-grpc-client-executor-110.42.213.184-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3644 +09:11:36.867 [nacos-grpc-client-executor-110.42.213.184-41] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:36.867 [nacos-grpc-client-executor-110.42.213.184-41] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:11:36.868 [nacos-grpc-client-executor-110.42.213.184-41] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3644 +09:13:17.420 [nacos-grpc-client-executor-110.42.213.184-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3645 +09:13:17.420 [nacos-grpc-client-executor-110.42.213.184-63] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:13:17.420 [nacos-grpc-client-executor-110.42.213.184-63] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:13:17.421 [nacos-grpc-client-executor-110.42.213.184-63] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3645 +09:14:36.160 [nacos-grpc-client-executor-110.42.213.184-83] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3654 +09:14:36.161 [nacos-grpc-client-executor-110.42.213.184-83] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8084,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:14:36.162 [nacos-grpc-client-executor-110.42.213.184-83] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] +09:14:36.162 [nacos-grpc-client-executor-110.42.213.184-83] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3654 +09:14:47.088 [reactor-http-nio-15] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=ca1ba7b5bb81, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8084/actuator, healthUrl=http://10.113.37.107:8084/actuator/health, serviceUrl=http://10.113.37.107:8084, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:13:34.532908900Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8084/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8084/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8084/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8084/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8084/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8084/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8084/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8084/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8084/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8084/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8084/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8084/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8084/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8084/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8084/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8084/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8084/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8084/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8084/actuator/info)}), buildVersion=null, tags=Tags(values={})) +org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:8084 at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: Error has been observed at the following site(s): @@ -407,8 +1070,8 @@ Original Stack Trace: 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:833) -Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /192.168.245.139:9300 + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:8084 Caused by: java.net.ConnectException: Connection refused: no further information at java.base/sun.nio.ch.Net.pollConnect(Native Method) at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) @@ -422,2540 +1085,18 @@ Caused by: java.net.ConnectException: Connection refused: no further information 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:833) -15:38:02.506 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:38:02.506 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:38:02.571 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:38:02.572 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:38:02.572 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:38:02.573 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:38:02.573 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:38:02.573 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:38:02.573 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:38:02.573 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:38:02.573 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:38:02.573 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:38:02.574 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:38:02.574 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:38:02.574 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->841abb1a-e90d-4a0e-90b2-886378505e18 -15:38:02.574 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3ac43ce4[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 100] -15:38:02.574 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:38:02.574 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@341d6dc1[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:38:02.574 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558381666_117.136.120.204_26604 -15:38:02.576 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@6ca295ee[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 94] -15:38:02.576 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->841abb1a-e90d-4a0e-90b2-886378505e18 -15:38:02.576 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:38:02.576 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:38:02.577 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:42:09.214 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:42:10.569 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:42:10.571 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:42:10.571 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:42:10.626 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:42:10.979 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:42:12.611 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:42:12.849 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:42:12.849 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:42:12.849 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:42:12.852 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:42:12.855 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:42:12.856 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:42:12.990 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of e4e52ce7-53e4-4358-80f1-f5788a9fe3dc -15:42:12.991 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->e4e52ce7-53e4-4358-80f1-f5788a9fe3dc -15:42:12.992 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:42:12.992 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:42:12.992 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:42:12.993 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:42:12.993 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:42:13.181 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726558935166_117.136.120.204_26630 -15:42:13.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:42:13.182 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Notify connected event to listeners. -15:42:13.182 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801066a20 -15:42:13.182 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:42:13.183 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:42:13.259 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.245.139:9101 register finished -15:42:13.338 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:42:13.339 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:42:13.382 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:13.389 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:13.515 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:42:13.515 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:42:13.576 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:13.577 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:13.581 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:42:13.581 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:42:13.644 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:13.644 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:13.649 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:42:13.649 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:42:13.694 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:13.694 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:13.701 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -15:42:13.716 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 7.38 seconds (process running for 7.859) -15:42:13.723 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:42:13.724 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:42:13.724 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -15:42:13.725 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -15:42:13.725 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -15:42:13.725 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -15:42:13.725 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -15:42:13.725 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -15:42:13.726 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -15:42:13.726 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:42:13.727 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -15:42:13.746 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:42:13.779 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Receive server push request, request = NotifySubscriberRequest, requestId = 12075 -15:42:13.780 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Ack server push request, request = NotifySubscriberRequest, requestId = 12075 -15:42:13.970 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Receive server push request, request = NotifySubscriberRequest, requestId = 12076 -15:42:13.971 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Ack server push request, request = NotifySubscriberRequest, requestId = 12076 -15:42:14.073 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Receive server push request, request = NotifySubscriberRequest, requestId = 12077 -15:42:14.076 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Ack server push request, request = NotifySubscriberRequest, requestId = 12077 -15:42:14.175 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Receive server push request, request = NotifySubscriberRequest, requestId = 12078 -15:42:14.175 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Ack server push request, request = NotifySubscriberRequest, requestId = 12078 -15:42:43.854 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:42:43.854 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:42:43.894 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:43.894 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:42:44.466 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Receive server push request, request = NotifySubscriberRequest, requestId = 12081 -15:42:44.467 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Ack server push request, request = NotifySubscriberRequest, requestId = 12081 -15:51:37.905 [nacos-grpc-client-executor-47.116.173.119-144] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Receive server push request, request = NotifySubscriberRequest, requestId = 12091 -15:51:37.905 [nacos-grpc-client-executor-47.116.173.119-144] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:51:37.905 [nacos-grpc-client-executor-47.116.173.119-144] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:51:37.906 [nacos-grpc-client-executor-47.116.173.119-144] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Ack server push request, request = NotifySubscriberRequest, requestId = 12091 -15:51:37.982 [nacos-grpc-client-executor-47.116.173.119-145] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Receive server push request, request = NotifySubscriberRequest, requestId = 12093 -15:51:37.982 [nacos-grpc-client-executor-47.116.173.119-145] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:51:37.983 [nacos-grpc-client-executor-47.116.173.119-145] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:51:37.984 [nacos-grpc-client-executor-47.116.173.119-145] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Ack server push request, request = NotifySubscriberRequest, requestId = 12093 -15:51:38.173 [nacos-grpc-client-executor-47.116.173.119-146] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Receive server push request, request = NotifySubscriberRequest, requestId = 12095 -15:51:38.174 [nacos-grpc-client-executor-47.116.173.119-146] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -15:51:38.174 [nacos-grpc-client-executor-47.116.173.119-146] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -15:51:38.175 [nacos-grpc-client-executor-47.116.173.119-146] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [e4e52ce7-53e4-4358-80f1-f5788a9fe3dc] Ack server push request, request = NotifySubscriberRequest, requestId = 12095 -15:51:39.400 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -15:51:39.400 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -15:51:39.450 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -15:51:39.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -15:51:39.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -15:51:39.451 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -15:51:39.452 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->e4e52ce7-53e4-4358-80f1-f5788a9fe3dc -15:51:39.453 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@790d1a7d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 188] -15:51:39.453 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -15:51:39.453 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@50e52c08[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -15:51:39.453 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726558935166_117.136.120.204_26630 -15:51:39.456 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@787c1a07[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 148] -15:51:39.457 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->e4e52ce7-53e4-4358-80f1-f5788a9fe3dc -15:51:39.457 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -15:51:39.457 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -15:51:39.458 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -15:51:47.191 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -15:51:48.703 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -15:51:48.705 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -15:51:48.705 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -15:51:48.762 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -15:51:49.178 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -15:51:51.408 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -15:51:51.783 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -15:51:51.784 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -15:51:51.784 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -15:51:51.789 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -15:51:51.793 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -15:51:51.794 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -15:51:51.913 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of c4d6ea6a-405d-4e2e-94ed-a9352939aa47 -15:51:51.915 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->c4d6ea6a-405d-4e2e-94ed-a9352939aa47 -15:51:51.915 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -15:51:51.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -15:51:51.916 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -15:51:51.917 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -15:51:51.917 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -15:51:52.069 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726559514060_117.136.120.204_26641 -15:51:52.070 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -15:51:52.070 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Notify connected event to listeners. -15:51:52.070 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801066a20 -15:51:52.070 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -15:51:52.071 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -15:51:52.121 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.245.139:9101 register finished -15:51:52.160 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -15:51:52.161 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -15:51:52.207 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:51:52.214 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -15:51:52.217 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -15:51:52.217 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -15:51:52.265 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -15:51:52.266 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -15:51:52.267 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -15:51:52.267 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -15:51:52.336 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:51:52.337 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:51:52.537 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -15:51:52.537 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -15:51:52.663 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:51:52.663 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -15:51:52.664 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12098 -15:51:52.665 [nacos-grpc-client-executor-47.116.173.119-15] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12098 -15:51:52.666 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -15:51:52.666 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -15:51:52.720 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:51:52.721 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -15:51:52.723 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -15:51:52.723 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -15:51:52.741 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12099 -15:51:52.742 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12099 -15:51:52.766 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:51:52.767 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:51:52.779 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -15:51:52.802 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.284 seconds (process running for 8.756) -15:51:52.811 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -15:51:52.812 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -15:51:52.812 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -15:51:52.813 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -15:51:52.813 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -15:51:52.813 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -15:51:52.814 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -15:51:52.814 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -15:51:52.815 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -15:51:52.815 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -15:51:52.816 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -15:51:52.842 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12100 -15:51:52.843 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12100 -15:51:52.851 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -15:51:53.143 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12101 -15:51:53.143 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12101 -15:51:53.245 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12102 -15:51:53.245 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12102 -15:51:53.345 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12103 -15:51:53.346 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12103 -15:52:03.984 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12104 -15:52:03.988 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:52:03.989 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:52:03.991 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12104 -15:52:07.061 [nacos-grpc-client-executor-47.116.173.119-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12105 -15:52:07.061 [nacos-grpc-client-executor-47.116.173.119-35] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:52:07.061 [nacos-grpc-client-executor-47.116.173.119-35] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:52:07.062 [nacos-grpc-client-executor-47.116.173.119-35] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12105 -15:52:07.456 [nacos-grpc-client-executor-47.116.173.119-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12106 -15:52:07.457 [nacos-grpc-client-executor-47.116.173.119-36] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:52:07.457 [nacos-grpc-client-executor-47.116.173.119-36] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:52:07.458 [nacos-grpc-client-executor-47.116.173.119-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12106 -15:52:10.877 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12108 -15:52:10.877 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:52:10.878 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -15:52:10.879 [nacos-grpc-client-executor-47.116.173.119-38] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12108 -16:12:10.710 [reactor-http-nio-2] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a2780b2d4db2, version=2, registration=Registration(name=cloud-gen, managementUrl=http://192.168.245.139:9202/actuator, healthUrl=http://192.168.245.139:9202/actuator/health, serviceUrl=http://192.168.245.139:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T07:51:54.139712700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:9202/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:9202/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:9202/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: Connection reset - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$HttpObserver.onUncaughtException(HttpClientConnect.java:403) - at reactor.netty.ReactorNetty$CompositeConnectionObserver.onUncaughtException(ReactorNetty.java:703) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onUncaughtException(DefaultPooledConnectionProvider.java:223) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnection.onUncaughtException(DefaultPooledConnectionProvider.java:476) - at reactor.netty.channel.FluxReceive.drainReceiver(FluxReceive.java:247) - at reactor.netty.channel.FluxReceive.onInboundError(FluxReceive.java:468) - at reactor.netty.channel.ChannelOperations.onInboundError(ChannelOperations.java:515) - at reactor.netty.channel.ChannelOperationsHandler.exceptionCaught(ChannelOperationsHandler.java:145) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:346) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:325) - at io.netty.channel.AbstractChannelHandlerContext.fireExceptionCaught(AbstractChannelHandlerContext.java:317) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireExceptionCaught(CombinedChannelDuplexHandler.java:424) - at io.netty.channel.ChannelHandlerAdapter.exceptionCaught(ChannelHandlerAdapter.java:92) - at io.netty.channel.CombinedChannelDuplexHandler$1.fireExceptionCaught(CombinedChannelDuplexHandler.java:145) - at io.netty.channel.ChannelInboundHandlerAdapter.exceptionCaught(ChannelInboundHandlerAdapter.java:143) - at io.netty.channel.CombinedChannelDuplexHandler.exceptionCaught(CombinedChannelDuplexHandler.java:231) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:346) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:325) - at io.netty.channel.AbstractChannelHandlerContext.fireExceptionCaught(AbstractChannelHandlerContext.java:317) - at io.netty.channel.DefaultChannelPipeline$HeadContext.exceptionCaught(DefaultChannelPipeline.java:1374) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:346) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:325) - at io.netty.channel.DefaultChannelPipeline.fireExceptionCaught(DefaultChannelPipeline.java:906) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.handleReadException(AbstractNioByteChannel.java:125) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:177) - 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:833) -Caused by: 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:833) -16:12:10.710 [reactor-http-nio-3] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=243a92ed6ff3, version=1, registration=Registration(name=cloud-monitor, managementUrl=http://192.168.245.139:9101/actuator, healthUrl=http://192.168.245.139:9101/actuator/health, serviceUrl=http://192.168.245.139:9101, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T07:51:53.067281300Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9101/actuator/health)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: Connection reset - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$HttpObserver.onUncaughtException(HttpClientConnect.java:403) - at reactor.netty.ReactorNetty$CompositeConnectionObserver.onUncaughtException(ReactorNetty.java:703) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onUncaughtException(DefaultPooledConnectionProvider.java:223) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnection.onUncaughtException(DefaultPooledConnectionProvider.java:476) - at reactor.netty.channel.FluxReceive.drainReceiver(FluxReceive.java:247) - at reactor.netty.channel.FluxReceive.onInboundError(FluxReceive.java:468) - at reactor.netty.channel.ChannelOperations.onInboundError(ChannelOperations.java:515) - at reactor.netty.channel.ChannelOperationsHandler.exceptionCaught(ChannelOperationsHandler.java:145) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:346) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:325) - at io.netty.channel.AbstractChannelHandlerContext.fireExceptionCaught(AbstractChannelHandlerContext.java:317) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireExceptionCaught(CombinedChannelDuplexHandler.java:424) - at io.netty.channel.ChannelHandlerAdapter.exceptionCaught(ChannelHandlerAdapter.java:92) - at io.netty.channel.CombinedChannelDuplexHandler$1.fireExceptionCaught(CombinedChannelDuplexHandler.java:145) - at io.netty.channel.ChannelInboundHandlerAdapter.exceptionCaught(ChannelInboundHandlerAdapter.java:143) - at io.netty.channel.CombinedChannelDuplexHandler.exceptionCaught(CombinedChannelDuplexHandler.java:231) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:346) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:325) - at io.netty.channel.AbstractChannelHandlerContext.fireExceptionCaught(AbstractChannelHandlerContext.java:317) - at io.netty.channel.DefaultChannelPipeline$HeadContext.exceptionCaught(DefaultChannelPipeline.java:1374) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:346) - at io.netty.channel.AbstractChannelHandlerContext.invokeExceptionCaught(AbstractChannelHandlerContext.java:325) - at io.netty.channel.DefaultChannelPipeline.fireExceptionCaught(DefaultChannelPipeline.java:906) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.handleReadException(AbstractNioByteChannel.java:125) - at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:177) - 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:833) -Caused by: 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:833) -16:12:10.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.838 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:10.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:12:10.850 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.071 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.087 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.276 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.291 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.492 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.507 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:11.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:11.821 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 3 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.218 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.233 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.233 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 4 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.735 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:12.750 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:12.750 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 5 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.365 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.350 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:13.638 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:13.701 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 6 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.342 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.421 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:14.594 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:14.742 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 7 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.412 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.563 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:15.630 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:15.817 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 8 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:16.554 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.741 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:16.868 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 9 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:17.879 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:18.076 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:18.123 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:18.453 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 10 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.249 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.503 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:19.558 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:19.811 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 11 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:20.711 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:20.946 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:21.025 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:21.272 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 12 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.263 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.497 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:22.579 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:22.823 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 13 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:23.904 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:24.174 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:24.237 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:24.486 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 14 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:25.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:25.721 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:25.989 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:26.254 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 15 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:26.329 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'a2780b2d4db2' missing in DiscoveryClient services and will be removed. -16:12:26.329 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '243a92ed6ff3' missing in DiscoveryClient services and will be removed. -16:12:26.329 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '0d068869659d' missing in DiscoveryClient services and will be removed. -16:12:26.329 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '922cf0aab8a9' missing in DiscoveryClient services and will be removed. -16:12:26.329 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '04e23879bade' missing in DiscoveryClient services and will be removed. -16:12:26.329 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '4625ffdd5f0e' missing in DiscoveryClient services and will be removed. -16:12:27.329 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:27.583 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:27.855 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:28.187 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 16 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.230 [parallel-16] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=922cf0aab8a9, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.245.139:8080/actuator, healthUrl=http://192.168.245.139:8080/actuator/health, serviceUrl=http://192.168.245.139:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T07:52:23.109039200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:8080/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:8080/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:8080/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:8080/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:29.230 [parallel-18] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=0d068869659d, version=2, registration=Registration(name=cloud-system, managementUrl=http://192.168.245.139:9701/actuator, healthUrl=http://192.168.245.139:9701/actuator/health, serviceUrl=http://192.168.245.139:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T07:52:23.251950400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:9701/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:9701/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:9701/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:9701/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:29.235 [parallel-20] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=04e23879bade, version=2, registration=Registration(name=cloud-file, managementUrl=http://192.168.245.139:9300/actuator, healthUrl=http://192.168.245.139:9300/actuator/health, serviceUrl=http://192.168.245.139:9300, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T07:52:23.108046700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:9300/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:9300/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:9300/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:9300/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:9300/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:9300/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:9300/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:9300/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:9300/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:9300/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:9300/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:9300/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:9300/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:9300/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:9300/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:9300/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:9300/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:9300/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:9300/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:29.235 [parallel-2] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=4625ffdd5f0e, version=2, registration=Registration(name=cloud-auth, managementUrl=http://192.168.245.139:9500/actuator, healthUrl=http://192.168.245.139:9500/actuator/health, serviceUrl=http://192.168.245.139:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T07:52:23.146433700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:9500/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:9500/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:9500/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:9500/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:12:29.292 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:29.544 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:29.892 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:30.134 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 17 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:12:31.352 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:31.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726560753459_117.143.60.138_58337 -16:12:31.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559508663_117.136.120.204_26638 -16:12:31.469 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559508663_117.136.120.204_26638 -16:12:31.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Notify disconnected event to listeners -16:12:31.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] DisConnected,clear listen context... -16:12:31.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Notify connected event to listeners. -16:12:31.469 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Connected,notify listen context... -16:12:31.943 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:12:32.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Success to connect a server [47.116.173.119:8848], connectionId = 1726560754064_117.143.60.138_58354 -16:12:32.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726559514060_117.136.120.204_26641 -16:12:32.009 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726559514060_117.136.120.204_26641 -16:12:32.009 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Notify disconnected event to listeners -16:12:32.009 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Notify connected event to listeners. -16:12:32.009 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:12:34.304 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor -16:12:34.351 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -16:12:34.371 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -16:12:34.389 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -16:12:34.397 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -16:12:34.413 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -16:12:34.429 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -16:12:34.537 [nacos-grpc-client-executor-47.116.173.119-362] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12160 -16:12:34.537 [nacos-grpc-client-executor-47.116.173.119-362] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12160 -16:12:34.710 [nacos-grpc-client-executor-47.116.173.119-363] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12163 -16:12:34.710 [nacos-grpc-client-executor-47.116.173.119-363] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12163 -16:12:34.915 [nacos-grpc-client-executor-47.116.173.119-364] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12166 -16:12:34.916 [nacos-grpc-client-executor-47.116.173.119-364] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12166 -16:12:34.917 [nacos-grpc-client-executor-47.116.173.119-365] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12167 -16:12:34.919 [nacos-grpc-client-executor-47.116.173.119-365] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12167 -16:12:34.921 [nacos-grpc-client-executor-47.116.173.119-366] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12169 -16:12:34.922 [nacos-grpc-client-executor-47.116.173.119-366] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12169 -16:12:35.012 [nacos-grpc-client-executor-47.116.173.119-367] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12171 -16:12:35.013 [nacos-grpc-client-executor-47.116.173.119-367] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12171 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-368] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12175 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-368] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12175 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-369] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12176 -16:12:35.407 [nacos-grpc-client-executor-47.116.173.119-369] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12176 -16:13:05.398 [parallel-10] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=922cf0aab8a9, version=4, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.245.139:8080/actuator, healthUrl=http://192.168.245.139:8080/actuator/health, serviceUrl=http://192.168.245.139:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.389669Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:8080/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:05.398 [parallel-14] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=243a92ed6ff3, version=4, registration=Registration(name=cloud-monitor, managementUrl=http://192.168.245.139:9101/actuator, healthUrl=http://192.168.245.139:9101/actuator/health, serviceUrl=http://192.168.245.139:9101, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.392668600Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9101/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:05.398 [parallel-6] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=0d068869659d, version=4, registration=Registration(name=cloud-system, managementUrl=http://192.168.245.139:9701/actuator, healthUrl=http://192.168.245.139:9701/actuator/health, serviceUrl=http://192.168.245.139:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.388668100Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9701/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:05.398 [parallel-12] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=04e23879bade, version=4, registration=Registration(name=cloud-file, managementUrl=http://192.168.245.139:9300/actuator, healthUrl=http://192.168.245.139:9300/actuator/health, serviceUrl=http://192.168.245.139:9300, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.391669800Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9300/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:05.398 [parallel-8] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a2780b2d4db2, version=5, registration=Registration(name=cloud-gen, managementUrl=http://192.168.245.139:9202/actuator, healthUrl=http://192.168.245.139:9202/actuator/health, serviceUrl=http://192.168.245.139:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.388668100Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9202/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:05.398 [parallel-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=4625ffdd5f0e, version=4, registration=Registration(name=cloud-auth, managementUrl=http://192.168.245.139:9500/actuator, healthUrl=http://192.168.245.139:9500/actuator/health, serviceUrl=http://192.168.245.139:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.386666600Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9500/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:09.244 [parallel-16] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a2780b2d4db2, version=5, registration=Registration(name=cloud-gen, managementUrl=http://192.168.245.139:9202/actuator, healthUrl=http://192.168.245.139:9202/actuator/health, serviceUrl=http://192.168.245.139:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.388668100Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9202/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:09.244 [parallel-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=04e23879bade, version=4, registration=Registration(name=cloud-file, managementUrl=http://192.168.245.139:9300/actuator, healthUrl=http://192.168.245.139:9300/actuator/health, serviceUrl=http://192.168.245.139:9300, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.391669800Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9300/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:09.244 [parallel-18] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=243a92ed6ff3, version=4, registration=Registration(name=cloud-monitor, managementUrl=http://192.168.245.139:9101/actuator, healthUrl=http://192.168.245.139:9101/actuator/health, serviceUrl=http://192.168.245.139:9101, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.392668600Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9101/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:09.244 [parallel-20] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=922cf0aab8a9, version=4, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.245.139:8080/actuator, healthUrl=http://192.168.245.139:8080/actuator/health, serviceUrl=http://192.168.245.139:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.389669Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:8080/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:09.244 [parallel-6] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=4625ffdd5f0e, version=4, registration=Registration(name=cloud-auth, managementUrl=http://192.168.245.139:9500/actuator, healthUrl=http://192.168.245.139:9500/actuator/health, serviceUrl=http://192.168.245.139:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.386666600Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9500/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:13:09.244 [parallel-2] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=0d068869659d, version=4, registration=Registration(name=cloud-system, managementUrl=http://192.168.245.139:9701/actuator, healthUrl=http://192.168.245.139:9701/actuator/health, serviceUrl=http://192.168.245.139:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T08:12:56.388668100Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.245.139:9701/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -16:28:39.406 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.406 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Try to reconnect to a new server, server is not appointed, will choose a random server. -16:28:39.407 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.407 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.527 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.531 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.532 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.746 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:39.750 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:39.751 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Fail to connect server, after trying 2 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -16:28:40.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.056 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:28:40.330 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722292_117.136.120.204_26975 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560753459_117.143.60.138_58337 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560753459_117.143.60.138_58337 -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Notify disconnected event to listeners -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] DisConnected,clear listen context... -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Notify connected event to listeners. -16:28:40.331 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [996aebf4-b93d-4fe5-97f5-21c3f6b2e12d_config-0] Connected,notify listen context... -16:28:40.345 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Success to connect a server [47.116.173.119:8848], connectionId = 1726561722293_117.136.120.204_26973 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726560754064_117.143.60.138_58354 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726560754064_117.143.60.138_58354 -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Notify disconnected event to listeners -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Notify connected event to listeners. -16:28:40.346 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:28:43.124 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForInstance,73] - Redo instance operation REGISTER for DEFAULT_GROUP@@cloud-monitor -16:28:43.223 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gen# -16:28:43.269 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -16:28:43.301 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-gateway# -16:28:43.321 [nacos-grpc-client-executor-47.116.173.119-581] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12261 -16:28:43.322 [nacos-grpc-client-executor-47.116.173.119-581] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12261 -16:28:43.346 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-file# -16:28:43.428 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -16:28:43.478 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-system# -16:28:43.638 [nacos-grpc-client-executor-47.116.173.119-586] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12265 -16:28:43.638 [nacos-grpc-client-executor-47.116.173.119-586] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12265 -16:28:43.725 [nacos-grpc-client-executor-47.116.173.119-587] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12269 -16:28:43.725 [nacos-grpc-client-executor-47.116.173.119-587] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12269 -16:28:43.823 [nacos-grpc-client-executor-47.116.173.119-588] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12273 -16:28:43.823 [nacos-grpc-client-executor-47.116.173.119-588] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12273 -16:28:43.924 [nacos-grpc-client-executor-47.116.173.119-589] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12275 -16:28:43.924 [nacos-grpc-client-executor-47.116.173.119-589] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12275 -16:28:44.024 [nacos-grpc-client-executor-47.116.173.119-590] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12277 -16:28:44.025 [nacos-grpc-client-executor-47.116.173.119-590] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12277 -16:28:59.639 [nacos-grpc-client-executor-47.116.173.119-594] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12307 -16:28:59.640 [nacos-grpc-client-executor-47.116.173.119-594] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12307 -16:29:07.117 [nacos-grpc-client-executor-47.116.173.119-596] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12342 -16:29:07.118 [nacos-grpc-client-executor-47.116.173.119-596] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12342 -16:29:07.118 [nacos-grpc-client-executor-47.116.173.119-597] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12344 -16:29:07.119 [nacos-grpc-client-executor-47.116.173.119-597] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12344 -16:29:07.437 [nacos-grpc-client-executor-47.116.173.119-598] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12346 -16:29:07.437 [nacos-grpc-client-executor-47.116.173.119-598] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12346 -16:29:07.438 [nacos-grpc-client-executor-47.116.173.119-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12347 -16:29:07.438 [nacos-grpc-client-executor-47.116.173.119-599] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12347 -16:29:07.763 [nacos-grpc-client-executor-47.116.173.119-600] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12350 -16:29:07.763 [nacos-grpc-client-executor-47.116.173.119-600] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12350 -16:49:41.621 [reactor-http-nio-3] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a2780b2d4db2, version=8, registration=Registration(name=cloud-gen, managementUrl=http://192.168.245.139:9202/actuator, healthUrl=http://192.168.245.139:9202/actuator/health, serviceUrl=http://192.168.245.139:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T08:28:41.907515600Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:9202/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:9202/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:9202/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: Connection prematurely closed BEFORE response - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$HttpObserver.onUncaughtException(HttpClientConnect.java:403) - at reactor.netty.ReactorNetty$CompositeConnectionObserver.onUncaughtException(ReactorNetty.java:703) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onUncaughtException(DefaultPooledConnectionProvider.java:223) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnection.onUncaughtException(DefaultPooledConnectionProvider.java:476) - at reactor.netty.http.client.HttpClientOperations.onInboundClose(HttpClientOperations.java:325) - at reactor.netty.channel.ChannelOperationsHandler.channelInactive(ChannelOperationsHandler.java:73) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.ChannelInboundHandlerAdapter.channelInactive(ChannelInboundHandlerAdapter.java:81) - at io.netty.handler.codec.http.HttpContentDecoder.channelInactive(HttpContentDecoder.java:235) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelInactive(CombinedChannelDuplexHandler.java:418) - at io.netty.handler.codec.ByteToMessageDecoder.channelInputClosed(ByteToMessageDecoder.java:412) - at io.netty.handler.codec.ByteToMessageDecoder.channelInactive(ByteToMessageDecoder.java:377) - at io.netty.handler.codec.http.HttpClientCodec$Decoder.channelInactive(HttpClientCodec.java:410) - at io.netty.channel.CombinedChannelDuplexHandler.channelInactive(CombinedChannelDuplexHandler.java:221) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelInactive(DefaultChannelPipeline.java:1402) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:301) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.DefaultChannelPipeline.fireChannelInactive(DefaultChannelPipeline.java:900) - at io.netty.channel.AbstractChannel$AbstractUnsafe$7.run(AbstractChannel.java:811) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:566) - 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:833) -Caused by: reactor.netty.http.client.PrematureCloseException: Connection prematurely closed BEFORE response -16:49:42.272 [nacos-grpc-client-executor-47.116.173.119-861] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12353 -16:49:42.273 [nacos-grpc-client-executor-47.116.173.119-861] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -16:49:42.273 [nacos-grpc-client-executor-47.116.173.119-861] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:49:42.274 [nacos-grpc-client-executor-47.116.173.119-861] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12353 -16:49:42.275 [nacos-grpc-client-executor-47.116.173.119-862] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12355 -16:49:42.275 [nacos-grpc-client-executor-47.116.173.119-862] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -16:49:42.275 [nacos-grpc-client-executor-47.116.173.119-862] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:49:42.276 [nacos-grpc-client-executor-47.116.173.119-862] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12355 -16:49:42.570 [nacos-grpc-client-executor-47.116.173.119-863] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12357 -16:49:42.570 [nacos-grpc-client-executor-47.116.173.119-863] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -16:49:42.570 [nacos-grpc-client-executor-47.116.173.119-863] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:49:42.571 [nacos-grpc-client-executor-47.116.173.119-863] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12357 -16:49:42.572 [nacos-grpc-client-executor-47.116.173.119-864] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Receive server push request, request = NotifySubscriberRequest, requestId = 12358 -16:49:42.572 [nacos-grpc-client-executor-47.116.173.119-864] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -16:49:42.573 [nacos-grpc-client-executor-47.116.173.119-864] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:49:42.573 [nacos-grpc-client-executor-47.116.173.119-864] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [c4d6ea6a-405d-4e2e-94ed-a9352939aa47] Ack server push request, request = NotifySubscriberRequest, requestId = 12358 -16:49:43.770 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:49:43.770 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:49:43.829 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:49:43.830 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:49:43.830 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:49:43.830 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:49:43.830 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:49:43.830 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->c4d6ea6a-405d-4e2e-94ed-a9352939aa47 -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@ec80fa7[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1153] -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@7c933b6e[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:49:43.831 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726561722293_117.136.120.204_26973 -16:49:43.832 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@17faf6f1[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 866] -16:49:43.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->c4d6ea6a-405d-4e2e-94ed-a9352939aa47 -16:49:43.833 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:49:43.833 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:49:43.833 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:49:57.100 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:49:58.507 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -16:49:58.509 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:49:58.509 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:49:58.568 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:49:58.968 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:50:01.077 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -16:50:01.425 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:50:01.426 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:50:01.426 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:50:01.430 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:50:01.434 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -16:50:01.435 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -16:50:01.720 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 31d55942-6677-46a1-8ba6-f5479ea10fbc -16:50:01.722 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->31d55942-6677-46a1-8ba6-f5479ea10fbc -16:50:01.723 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:50:01.723 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:50:01.724 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:50:01.725 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:50:01.725 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:50:01.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563003881_117.136.120.204_27003 -16:50:01.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:50:01.865 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Notify connected event to listeners. -16:50:01.865 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801067060 -16:50:01.865 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:50:01.866 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:50:01.904 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.245.139:9101 register finished -16:50:01.950 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -16:50:01.950 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -16:50:01.979 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:50:01.988 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:50:01.992 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -16:50:01.992 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -16:50:02.032 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:50:02.032 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:50:02.034 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -16:50:02.034 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -16:50:02.089 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:50:02.090 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:50:02.092 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -16:50:02.092 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -16:50:02.136 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:02.137 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:02.327 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -16:50:02.327 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -16:50:02.369 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:50:02.369 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:50:02.370 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -16:50:02.371 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -16:50:02.429 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -16:50:02.430 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -16:50:02.434 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -16:50:02.437 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12372 -16:50:02.439 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:02.439 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:02.441 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12372 -16:50:02.458 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.407 seconds (process running for 8.916) -16:50:02.468 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:50:02.468 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:50:02.469 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -16:50:02.470 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -16:50:02.470 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -16:50:02.470 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -16:50:02.470 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -16:50:02.471 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -16:50:02.473 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -16:50:02.473 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:50:02.473 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -16:50:02.535 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12373 -16:50:02.536 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12373 -16:50:02.540 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12374 -16:50:02.540 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12374 -16:50:02.612 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:50:02.636 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12375 -16:50:02.637 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12375 -16:50:02.641 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12376 -16:50:02.641 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12376 -16:50:02.938 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12377 -16:50:02.939 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12377 -16:50:13.719 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12379 -16:50:13.719 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:13.719 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:13.720 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12379 -16:50:17.372 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12381 -16:50:17.372 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:17.373 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:17.373 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12381 -16:50:19.352 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12383 -16:50:19.352 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:19.353 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:19.354 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12383 -16:50:20.976 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12385 -16:50:20.977 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:20.979 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:50:20.980 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12385 -16:53:25.128 [nacos-grpc-client-executor-47.116.173.119-73] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12404 -16:53:25.128 [nacos-grpc-client-executor-47.116.173.119-73] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:53:25.128 [nacos-grpc-client-executor-47.116.173.119-73] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-73] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12404 -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-74] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12406 -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-74] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-74] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:53:25.143 [nacos-grpc-client-executor-47.116.173.119-74] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12406 -16:53:25.237 [nacos-grpc-client-executor-47.116.173.119-75] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12408 -16:53:25.237 [nacos-grpc-client-executor-47.116.173.119-75] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:53:25.237 [nacos-grpc-client-executor-47.116.173.119-75] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:53:25.237 [nacos-grpc-client-executor-47.116.173.119-75] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12408 -16:53:25.457 [nacos-grpc-client-executor-47.116.173.119-76] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Receive server push request, request = NotifySubscriberRequest, requestId = 12410 -16:53:25.457 [nacos-grpc-client-executor-47.116.173.119-76] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000,"ipDeleteTimeout":30000}] -16:53:25.457 [nacos-grpc-client-executor-47.116.173.119-76] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:53:25.457 [nacos-grpc-client-executor-47.116.173.119-76] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [31d55942-6677-46a1-8ba6-f5479ea10fbc] Ack server push request, request = NotifySubscriberRequest, requestId = 12410 -16:53:26.698 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -16:53:26.698 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->31d55942-6677-46a1-8ba6-f5479ea10fbc -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@3fe3927d[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 68] -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5f1951e6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563003881_117.136.120.204_27003 -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@3f362b6e[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 78] -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->31d55942-6677-46a1-8ba6-f5479ea10fbc -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -16:53:26.745 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -16:53:35.147 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -16:53:36.484 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -16:53:36.486 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -16:53:36.486 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -16:53:36.542 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -16:53:36.907 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -16:53:39.115 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -16:53:39.406 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -16:53:39.407 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -16:53:39.408 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -16:53:39.412 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -16:53:39.416 [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:39.416 [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:39.545 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 0fd6e445-20c0-4c85-8e0f-1a3df5d1134f -16:53:39.547 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->0fd6e445-20c0-4c85-8e0f-1a3df5d1134f -16:53:39.548 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -16:53:39.548 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -16:53:39.548 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -16:53:39.549 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -16:53:39.549 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -16:53:39.747 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726563221722_117.136.120.204_27015 -16:53:39.748 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -16:53:39.748 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Notify connected event to listeners. -16:53:39.748 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801065e20 -16:53:39.748 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -16:53:39.750 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -16:53:39.795 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.245.139:9101 register finished -16:53:39.859 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -16:53:39.860 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -16:53:39.890 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:53:39.902 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -16:53:39.908 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -16:53:39.908 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -16:53:39.986 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:53:39.987 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -16:53:39.989 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -16:53:39.989 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -16:53:40.159 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:53:40.160 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -16:53:40.161 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -16:53:40.162 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -16:53:40.200 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -16:53:40.201 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -16:53:40.203 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -16:53:40.203 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -16:53:40.258 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:53:40.258 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -16:53:40.259 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -16:53:40.260 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -16:53:40.286 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -16:53:40.286 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -16:53:40.291 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -16:53:40.311 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 7.991 seconds (process running for 8.515) -16:53:40.325 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -16:53:40.326 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -16:53:40.327 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -16:53:40.327 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -16:53:40.328 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -16:53:40.328 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -16:53:40.329 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -16:53:40.329 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -16:53:40.331 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -16:53:40.331 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -16:53:40.331 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -16:53:40.360 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12411 -16:53:40.362 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:40.362 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:40.364 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12411 -16:53:40.465 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12412 -16:53:40.465 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12412 -16:53:40.548 [RMI TCP Connection(6)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -16:53:40.562 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12413 -16:53:40.562 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12413 -16:53:40.657 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12414 -16:53:40.658 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12414 -16:53:40.756 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12415 -16:53:40.757 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12415 -16:53:40.760 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12416 -16:53:40.761 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12416 -16:53:51.568 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12417 -16:53:51.569 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:51.569 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:51.571 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12417 -16:53:56.625 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12418 -16:53:56.626 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:56.626 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:56.628 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12418 -16:53:58.943 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12419 -16:53:58.944 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:58.944 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:53:58.945 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12419 -16:54:00.018 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12420 -16:54:00.019 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:00.023 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:00.023 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12420 -16:54:03.849 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 12422 -16:54:03.849 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.850 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -16:54:03.851 [nacos-grpc-client-executor-47.116.173.119-34] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 12422 -17:23:56.977 [parallel-12] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a2780b2d4db2, version=2, registration=Registration(name=cloud-gen, managementUrl=http://192.168.245.139:9202/actuator, healthUrl=http://192.168.245.139:9202/actuator/health, serviceUrl=http://192.168.245.139:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T08:54:10.778697300Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:9202/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:9202/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:9202/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -17:29:16.984 [parallel-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=0d068869659d, version=2, registration=Registration(name=cloud-system, managementUrl=http://192.168.245.139:9701/actuator, healthUrl=http://192.168.245.139:9701/actuator/health, serviceUrl=http://192.168.245.139:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T08:54:10.773699100Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://192.168.245.139:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://192.168.245.139:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://192.168.245.139:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://192.168.245.139:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://192.168.245.139:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://192.168.245.139:9701/actuator/refresh), env=Endpoint(id=env, url=http://192.168.245.139:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://192.168.245.139:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://192.168.245.139:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://192.168.245.139:9701/actuator/heapdump), features=Endpoint(id=features, url=http://192.168.245.139:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://192.168.245.139:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://192.168.245.139:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://192.168.245.139:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://192.168.245.139:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://192.168.245.139:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://192.168.245.139:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://192.168.245.139:9701/actuator/conditions), info=Endpoint(id=info, url=http://192.168.245.139:9701/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -17:50:59.810 [nacos-grpc-client-executor-47.116.173.119-737] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 13196 -17:50:59.811 [nacos-grpc-client-executor-47.116.173.119-737] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:50:59.811 [nacos-grpc-client-executor-47.116.173.119-737] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -17:50:59.812 [nacos-grpc-client-executor-47.116.173.119-737] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 13196 -17:50:59.901 [nacos-grpc-client-executor-47.116.173.119-738] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 13198 -17:50:59.902 [nacos-grpc-client-executor-47.116.173.119-738] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:50:59.902 [nacos-grpc-client-executor-47.116.173.119-738] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -17:50:59.904 [nacos-grpc-client-executor-47.116.173.119-738] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 13198 -17:51:00.007 [nacos-grpc-client-executor-47.116.173.119-739] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 13200 -17:51:00.007 [nacos-grpc-client-executor-47.116.173.119-739] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:00.008 [nacos-grpc-client-executor-47.116.173.119-739] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -17:51:00.009 [nacos-grpc-client-executor-47.116.173.119-739] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 13200 -17:51:00.106 [nacos-grpc-client-executor-47.116.173.119-740] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Receive server push request, request = NotifySubscriberRequest, requestId = 13202 -17:51:00.107 [nacos-grpc-client-executor-47.116.173.119-740] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:00.107 [nacos-grpc-client-executor-47.116.173.119-740] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -17:51:00.108 [nacos-grpc-client-executor-47.116.173.119-740] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0fd6e445-20c0-4c85-8e0f-1a3df5d1134f] Ack server push request, request = NotifySubscriberRequest, requestId = 13202 -17:51:01.290 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:51:01.290 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:51:01.367 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:51:01.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:51:01.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:51:01.368 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->0fd6e445-20c0-4c85-8e0f-1a3df5d1134f -17:51:01.369 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@60057437[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1144] -17:51:01.370 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:51:01.370 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@153c5807[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:51:01.370 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726563221722_117.136.120.204_27015 -17:51:01.372 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4dc1ef51[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 742] -17:51:01.373 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->0fd6e445-20c0-4c85-8e0f-1a3df5d1134f -17:51:01.373 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:51:01.373 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:51:01.373 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -17:51:10.200 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -17:51:11.655 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -17:51:11.657 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -17:51:11.657 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -17:51:11.731 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -17:51:12.144 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -17:51:14.232 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -17:51:14.533 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -17:51:14.533 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -17:51:14.533 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -17:51:14.537 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -17:51:14.540 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -17:51:14.541 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -17:51:14.694 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 1460020f-4ce0-4f88-a240-7217e6689329 -17:51:14.696 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->1460020f-4ce0-4f88-a240-7217e6689329 -17:51:14.696 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -17:51:14.697 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -17:51:14.697 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -17:51:14.697 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -17:51:14.698 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -17:51:14.927 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726566676937_117.136.120.204_27366 -17:51:14.927 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -17:51:14.927 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801065c28 -17:51:14.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Notify connected event to listeners. -17:51:14.927 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -17:51:14.928 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736], preserved.register.source=SPRING_CLOUD}} -17:51:15.011 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 192.168.245.139:9101 register finished -17:51:15.083 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -17:51:15.083 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -17:51:15.124 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-auth -> [] -17:51:15.132 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -17:51:15.135 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -17:51:15.136 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -17:51:15.205 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-system -> [] -17:51:15.206 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -17:51:15.207 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -17:51:15.208 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -17:51:15.280 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -17:51:15.280 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -17:51:15.281 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -17:51:15.281 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -17:51:15.368 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -17:51:15.369 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -17:51:15.370 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -17:51:15.371 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -17:51:15.418 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-file -> [] -17:51:15.418 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -17:51:15.420 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -17:51:15.420 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -17:51:15.496 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -17:51:15.497 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -17:51:15.504 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -17:51:15.516 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13207 -17:51:15.518 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:15.519 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.245.139#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.245.139","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:15.521 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13207 -17:51:15.530 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.357 seconds (process running for 8.87) -17:51:15.541 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -17:51:15.541 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -17:51:15.541 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -17:51:15.542 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -17:51:15.542 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -17:51:15.543 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -17:51:15.543 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -17:51:15.543 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -17:51:15.544 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -17:51:15.545 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -17:51:15.545 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -17:51:15.713 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13209 -17:51:15.713 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13209 -17:51:15.716 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13208 -17:51:15.717 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13208 -17:51:15.815 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13210 -17:51:15.816 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13210 -17:51:15.856 [RMI TCP Connection(4)-192.168.245.139] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -17:51:15.912 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13211 -17:51:15.912 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13211 -17:51:16.015 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13212 -17:51:16.015 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13212 -17:51:26.936 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13213 -17:51:26.937 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:26.939 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:26.943 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13213 -17:51:31.257 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13214 -17:51:31.257 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:31.258 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.245.139#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.245.139","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:31.259 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13214 -17:51:34.485 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13215 -17:51:34.485 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:34.486 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:34.487 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13215 -17:51:35.689 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13216 -17:51:35.690 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:35.697 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:35.699 [nacos-grpc-client-executor-47.116.173.119-32] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13216 -17:51:39.715 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13217 -17:51:39.716 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:39.717 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:51:39.718 [nacos-grpc-client-executor-47.116.173.119-33] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13217 -17:58:28.984 [nacos-grpc-client-executor-47.116.173.119-116] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13266 -17:58:28.985 [nacos-grpc-client-executor-47.116.173.119-116] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.245.139#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.245.139","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:58:28.985 [nacos-grpc-client-executor-47.116.173.119-116] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -17:58:28.986 [nacos-grpc-client-executor-47.116.173.119-116] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13266 -17:58:30.339 [nacos-grpc-client-executor-47.116.173.119-117] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13268 -17:58:30.339 [nacos-grpc-client-executor-47.116.173.119-117] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"192.168.245.139#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"192.168.245.139","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:58:30.339 [nacos-grpc-client-executor-47.116.173.119-117] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -17:58:30.339 [nacos-grpc-client-executor-47.116.173.119-117] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13268 -17:58:33.618 [nacos-grpc-client-executor-47.116.173.119-119] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13270 -17:58:33.618 [nacos-grpc-client-executor-47.116.173.119-119] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.245.139#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.245.139","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:58:33.619 [nacos-grpc-client-executor-47.116.173.119-119] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] -17:58:33.620 [nacos-grpc-client-executor-47.116.173.119-119] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13270 -17:58:38.218 [nacos-grpc-client-executor-47.116.173.119-120] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Receive server push request, request = NotifySubscriberRequest, requestId = 13273 -17:58:38.219 [nacos-grpc-client-executor-47.116.173.119-120] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"192.168.245.139#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"192.168.245.139","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2409:891f:8fa3:d835:c3f2:508e:1bb9:7736]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -17:58:38.220 [nacos-grpc-client-executor-47.116.173.119-120] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -17:58:38.220 [nacos-grpc-client-executor-47.116.173.119-120] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [1460020f-4ce0-4f88-a240-7217e6689329] Ack server push request, request = NotifySubscriberRequest, requestId = 13273 -17:58:41.462 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -17:58:41.462 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='192.168.245.139', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -17:58:41.554 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -17:58:41.554 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->1460020f-4ce0-4f88-a240-7217e6689329 -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@1a1bd030[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 148] -17:58:41.555 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -17:58:41.556 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@55283970[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -17:58:41.556 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726566676937_117.136.120.204_27366 -17:58:41.558 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@79404834[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 122] -17:58:41.558 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->1460020f-4ce0-4f88-a240-7217e6689329 -17:58:41.558 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -17:58:41.558 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -17:58:41.559 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -18:46:54.734 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -18:46:56.215 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -18:46:56.217 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -18:46:56.217 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -18:46:56.280 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -18:46:56.718 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -18:46:59.382 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -18:46:59.852 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -18:46:59.853 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -18:46:59.854 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -18:46:59.863 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -18:46:59.872 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -18:46:59.872 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -18:47:00.036 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 275a457a-72a9-4b11-82bc-6948058af6d4 -18:47:00.040 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->275a457a-72a9-4b11-82bc-6948058af6d4 -18:47:00.040 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -18:47:00.041 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -18:47:00.041 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -18:47:00.042 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -18:47:00.043 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -18:47:00.358 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726570022833_117.143.60.138_58939 -18:47:00.359 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -18:47:00.359 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Notify connected event to listeners. -18:47:00.359 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801065e20 -18:47:00.359 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -18:47:00.360 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -18:47:00.429 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.39:9101 register finished -18:47:00.479 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -18:47:00.479 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -18:47:00.515 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:00.528 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:00.806 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -18:47:00.806 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -18:47:00.835 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:00.836 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:00.841 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -18:47:00.842 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -18:47:00.868 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:00.869 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:00.878 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -18:47:00.878 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -18:47:00.906 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:00.906 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:00.924 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -18:47:00.924 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -18:47:01.047 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:01.051 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:01.065 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -18:47:01.092 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 10.197 seconds (process running for 10.915) -18:47:01.097 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13727 -18:47:01.098 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13727 -18:47:01.107 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -18:47:01.107 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -18:47:01.107 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -18:47:01.108 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -18:47:01.109 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -18:47:01.109 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -18:47:01.109 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -18:47:01.109 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -18:47:01.111 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -18:47:01.111 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -18:47:01.112 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -18:47:01.150 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -18:47:01.389 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13728 -18:47:01.390 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13728 -18:47:01.489 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13729 -18:47:01.490 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13729 -18:47:01.493 [nacos-grpc-client-executor-47.116.173.119-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13730 -18:47:01.493 [nacos-grpc-client-executor-47.116.173.119-27] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13730 -18:47:01.570 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13731 -18:47:01.570 [nacos-grpc-client-executor-47.116.173.119-28] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13731 -18:47:31.369 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -18:47:31.369 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -18:47:31.526 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:31.526 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -18:47:32.179 [nacos-grpc-client-executor-47.116.173.119-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13734 -18:47:32.179 [nacos-grpc-client-executor-47.116.173.119-36] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13734 -19:04:05.721 [nacos-grpc-client-executor-47.116.173.119-234] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13765 -19:04:05.722 [nacos-grpc-client-executor-47.116.173.119-234] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -19:04:05.722 [nacos-grpc-client-executor-47.116.173.119-234] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:04:05.723 [nacos-grpc-client-executor-47.116.173.119-234] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13765 -19:04:05.863 [nacos-grpc-client-executor-47.116.173.119-235] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13767 -19:04:05.863 [nacos-grpc-client-executor-47.116.173.119-235] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -19:04:05.863 [nacos-grpc-client-executor-47.116.173.119-235] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -19:04:05.865 [nacos-grpc-client-executor-47.116.173.119-235] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13767 -19:04:05.866 [nacos-grpc-client-executor-47.116.173.119-236] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13769 -19:04:05.866 [nacos-grpc-client-executor-47.116.173.119-236] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -19:04:05.866 [nacos-grpc-client-executor-47.116.173.119-236] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] -19:04:05.867 [nacos-grpc-client-executor-47.116.173.119-236] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13769 -19:04:05.977 [nacos-grpc-client-executor-47.116.173.119-237] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Receive server push request, request = NotifySubscriberRequest, requestId = 13771 -19:04:05.978 [nacos-grpc-client-executor-47.116.173.119-237] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000}] -19:04:05.978 [nacos-grpc-client-executor-47.116.173.119-237] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -19:04:05.978 [nacos-grpc-client-executor-47.116.173.119-237] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [275a457a-72a9-4b11-82bc-6948058af6d4] Ack server push request, request = NotifySubscriberRequest, requestId = 13771 -19:04:07.243 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:04:07.244 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:04:07.259 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:04:07.260 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:04:07.261 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:04:07.261 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:04:07.261 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:04:07.261 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:04:07.261 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:04:07.261 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:04:07.262 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:04:07.262 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:04:07.262 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:04:07.262 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:04:07.262 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->275a457a-72a9-4b11-82bc-6948058af6d4 -19:04:07.263 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@2fd9d03e[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 341] -19:04:07.263 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:04:07.263 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@360c98af[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:04:07.264 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726570022833_117.143.60.138_58939 -19:04:07.266 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@7181c93d[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 239] -19:04:07.267 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->275a457a-72a9-4b11-82bc-6948058af6d4 -19:04:07.267 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:04:07.267 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:04:07.267 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:04:39.312 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:04:40.318 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -19:04:40.319 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:04:40.320 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:04:40.366 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:04:40.644 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:04:42.104 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -19:04:42.299 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:04:42.299 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:04:42.299 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:04:42.303 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:04:42.305 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:04:42.305 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:04:42.417 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 0689cd3f-accc-4330-bf56-640e2e5cecd5 -19:04:42.419 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->0689cd3f-accc-4330-bf56-640e2e5cecd5 -19:04:42.419 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:04:42.419 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:04:42.419 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:04:42.420 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:04:42.420 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:04:42.576 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726571085130_117.143.60.138_61416 -19:04:42.577 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:04:42.577 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Notify connected event to listeners. -19:04:42.577 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801065c28 -19:04:42.577 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:04:42.578 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:04:42.609 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.39:9101 register finished -19:04:42.669 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:04:42.670 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:04:42.694 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.700 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.817 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:04:42.818 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:04:42.848 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.849 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.854 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:04:42.854 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:04:42.901 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.901 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.906 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:04:42.906 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:04:42.948 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.948 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.953 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:04:42.954 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:04:42.986 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.988 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:42.992 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:04:42.992 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:04:43.028 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -19:04:43.029 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-monitor -> [] -19:04:43.032 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -19:04:43.050 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 5.866 seconds (process running for 6.52) -19:04:43.059 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:04:43.059 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:04:43.059 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -19:04:43.060 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -19:04:43.060 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -19:04:43.060 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -19:04:43.060 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -19:04:43.060 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -19:04:43.061 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -19:04:43.062 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:04:43.062 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -19:04:43.125 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 13780 -19:04:43.127 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:43.127 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:04:43.128 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 13780 -19:04:43.281 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 13781 -19:04:43.282 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 13781 -19:04:43.368 [RMI TCP Connection(3)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:04:43.425 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 13782 -19:04:43.426 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 13782 -19:04:43.429 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 13783 -19:04:43.429 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 13783 -19:04:43.532 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 13784 -19:04:43.532 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 13784 -19:04:43.535 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 13785 -19:04:43.535 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 13785 -19:12:59.346 [nacos-grpc-client-executor-47.116.173.119-128] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 13917 -19:12:59.347 [nacos-grpc-client-executor-47.116.173.119-128] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:12:59.348 [nacos-grpc-client-executor-47.116.173.119-128] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:12:59.349 [nacos-grpc-client-executor-47.116.173.119-128] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 13917 -19:13:22.722 [parallel-5] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a840d5826a3e, version=0, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.153.1:8080/actuator, healthUrl=http://192.168.153.1:8080/actuator/health, serviceUrl=http://192.168.153.1:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:13:13.706874Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:8080/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:14:08.627 [nacos-grpc-client-executor-47.116.173.119-143] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 13925 -19:14:08.627 [nacos-grpc-client-executor-47.116.173.119-143] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:14:08.627 [nacos-grpc-client-executor-47.116.173.119-143] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:14:08.628 [nacos-grpc-client-executor-47.116.173.119-143] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 13925 -19:14:22.755 [parallel-9] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=2337ecd17f54, version=0, registration=Registration(name=cloud-auth, managementUrl=http://192.168.153.1:9500/actuator, healthUrl=http://192.168.153.1:9500/actuator/health, serviceUrl=http://192.168.153.1:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:14:13.750193300Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:9500/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:16:01.039 [nacos-grpc-client-executor-47.116.173.119-167] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14003 -19:16:01.040 [nacos-grpc-client-executor-47.116.173.119-167] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:16:01.040 [nacos-grpc-client-executor-47.116.173.119-167] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:16:01.041 [nacos-grpc-client-executor-47.116.173.119-167] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14003 -19:16:22.853 [parallel-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=463aa40d21f6, version=0, registration=Registration(name=cloud-system, managementUrl=http://192.168.153.1:9701/actuator, healthUrl=http://192.168.153.1:9701/actuator/health, serviceUrl=http://192.168.153.1:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:16:13.842975700Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:9701/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:19:53.823 [nacos-grpc-client-executor-47.116.173.119-216] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14046 -19:19:53.823 [nacos-grpc-client-executor-47.116.173.119-216] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.40.1#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.40.1","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:19:53.824 [nacos-grpc-client-executor-47.116.173.119-216] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.40.1#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.40.1","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:19:53.825 [nacos-grpc-client-executor-47.116.173.119-216] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14046 -19:19:56.612 [nacos-grpc-client-executor-47.116.173.119-217] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14055 -19:19:56.613 [nacos-grpc-client-executor-47.116.173.119-217] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"192.168.40.1#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"192.168.40.1","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:19:56.613 [nacos-grpc-client-executor-47.116.173.119-217] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:19:56.614 [nacos-grpc-client-executor-47.116.173.119-217] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14055 -19:26:30.389 [parallel-11] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=59982309322f, version=2, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.39:9500/actuator, healthUrl=http://10.113.37.39:9500/actuator/health, serviceUrl=http://10.113.37.39:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T11:04:43.082205700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:9500/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:9500/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:9500/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:9500/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:26:30.455 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Server healthy check fail, currentConnection = 1726571081663_117.143.60.138_61398 -19:26:30.456 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:26:30.456 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:33.578 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:36.600 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Fail to connect server, after trying 1 times, last try server is {serverIp = '47.116.173.119', server main port = 8848}, error = unknown -19:26:36.806 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:26:38.843 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572400763_117.143.60.138_64419 -19:26:38.859 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726571081663_117.143.60.138_61398 -19:26:38.859 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571081663_117.143.60.138_61398 -19:26:38.859 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Notify disconnected event to listeners -19:26:38.859 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] DisConnected,clear listen context... -19:26:38.859 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Notify connected event to listeners. -19:26:38.859 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Connected,notify listen context... -19:26:50.663 [nacos-grpc-client-executor-47.116.173.119-300] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14257 -19:26:50.663 [nacos-grpc-client-executor-47.116.173.119-300] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:26:50.663 [nacos-grpc-client-executor-47.116.173.119-300] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:26:50.663 [nacos-grpc-client-executor-47.116.173.119-300] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14257 -19:26:51.964 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:26:52.008 [nacos-grpc-client-executor-47.116.173.119-302] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14265 -19:26:52.008 [nacos-grpc-client-executor-47.116.173.119-302] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:26:52.008 [nacos-grpc-client-executor-47.116.173.119-302] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:26:52.008 [nacos-grpc-client-executor-47.116.173.119-302] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14265 -19:26:56.880 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:27:06.896 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [a6f6a76d-9628-41c9-b20a-aa4b709e7736_config-0] Server check success, currentServer is 47.116.173.119:8848 -19:27:11.477 [nacos-grpc-client-executor-47.116.173.119-305] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14338 -19:27:11.477 [nacos-grpc-client-executor-47.116.173.119-305] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14338 -19:27:36.923 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Server check success, currentServer is 47.116.173.119:8848 -19:27:38.114 [nacos-grpc-client-executor-47.116.173.119-313] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14429 -19:27:38.114 [nacos-grpc-client-executor-47.116.173.119-313] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:38.114 [nacos-grpc-client-executor-47.116.173.119-313] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:38.132 [nacos-grpc-client-executor-47.116.173.119-313] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14429 -19:27:40.738 [nacos-grpc-client-executor-47.116.173.119-314] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14436 -19:27:40.738 [nacos-grpc-client-executor-47.116.173.119-314] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:40.738 [nacos-grpc-client-executor-47.116.173.119-314] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:40.738 [nacos-grpc-client-executor-47.116.173.119-314] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14436 -19:27:40.913 [nacos-grpc-client-executor-47.116.173.119-315] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14441 -19:27:40.913 [nacos-grpc-client-executor-47.116.173.119-315] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:40.913 [nacos-grpc-client-executor-47.116.173.119-315] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:40.930 [nacos-grpc-client-executor-47.116.173.119-315] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14441 -19:27:42.114 [nacos-grpc-client-executor-47.116.173.119-316] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14448 -19:27:42.114 [nacos-grpc-client-executor-47.116.173.119-316] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:42.114 [nacos-grpc-client-executor-47.116.173.119-316] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:27:42.114 [nacos-grpc-client-executor-47.116.173.119-316] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14448 -19:27:43.710 [nacos-grpc-client-executor-47.116.173.119-317] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14453 -19:27:43.710 [nacos-grpc-client-executor-47.116.173.119-317] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:43.710 [nacos-grpc-client-executor-47.116.173.119-317] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:43.711 [nacos-grpc-client-executor-47.116.173.119-317] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14453 -19:27:44.139 [nacos-grpc-client-executor-47.116.173.119-318] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14456 -19:27:44.140 [nacos-grpc-client-executor-47.116.173.119-318] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:44.140 [nacos-grpc-client-executor-47.116.173.119-318] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:27:44.141 [nacos-grpc-client-executor-47.116.173.119-318] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14456 -19:27:50.396 [parallel-14] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=b67a2898a70a, version=3, registration=Registration(name=cloud-file, managementUrl=http://10.113.37.39:9300/actuator, healthUrl=http://10.113.37.39:9300/actuator/health, serviceUrl=http://10.113.37.39:9300, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T11:27:24.410460400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:9300/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:9300/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:9300/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:9300/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:9300/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:9300/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:9300/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:9300/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:9300/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:9300/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:9300/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:9300/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:9300/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:9300/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:9300/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:9300/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:9300/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:9300/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:9300/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:27:50.396 [parallel-10] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=3b686b81ca9d, version=2, registration=Registration(name=cloud-gen, managementUrl=http://10.113.37.39:9202/actuator, healthUrl=http://10.113.37.39:9202/actuator/health, serviceUrl=http://10.113.37.39:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T11:04:43.137871700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:9202/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:9202/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:9202/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:28:09.002 [nacos-grpc-client-executor-47.116.173.119-324] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14510 -19:28:09.002 [nacos-grpc-client-executor-47.116.173.119-324] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:28:09.002 [nacos-grpc-client-executor-47.116.173.119-324] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:28:09.003 [nacos-grpc-client-executor-47.116.173.119-324] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14510 -19:28:10.904 [nacos-grpc-client-executor-47.116.173.119-325] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14517 -19:28:10.904 [nacos-grpc-client-executor-47.116.173.119-325] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:28:10.904 [nacos-grpc-client-executor-47.116.173.119-325] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -19:28:10.904 [nacos-grpc-client-executor-47.116.173.119-325] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14517 -19:28:11.493 [nacos-grpc-client-executor-47.116.173.119-326] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14523 -19:28:11.493 [nacos-grpc-client-executor-47.116.173.119-326] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:28:11.493 [nacos-grpc-client-executor-47.116.173.119-326] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:28:11.493 [nacos-grpc-client-executor-47.116.173.119-326] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14523 -19:28:12.702 [nacos-grpc-client-executor-47.116.173.119-328] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14527 -19:28:12.702 [nacos-grpc-client-executor-47.116.173.119-328] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:28:12.702 [nacos-grpc-client-executor-47.116.173.119-328] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:28:12.702 [nacos-grpc-client-executor-47.116.173.119-328] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14527 -19:28:30.411 [parallel-1] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=3a16510bfd25, version=2, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.39:9701/actuator, healthUrl=http://10.113.37.39:9701/actuator/health, serviceUrl=http://10.113.37.39:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T11:04:43.088205400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:9701/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:9701/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:9701/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:9701/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:17.426 [nacos-grpc-client-executor-47.116.173.119-343] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14733 -19:29:17.426 [nacos-grpc-client-executor-47.116.173.119-343] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:29:17.426 [nacos-grpc-client-executor-47.116.173.119-343] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:29:17.427 [nacos-grpc-client-executor-47.116.173.119-343] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14733 -19:29:18.216 [nacos-grpc-client-executor-47.116.173.119-344] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14742 -19:29:18.217 [nacos-grpc-client-executor-47.116.173.119-344] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:29:18.217 [nacos-grpc-client-executor-47.116.173.119-344] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:29:18.217 [nacos-grpc-client-executor-47.116.173.119-344] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14742 -19:29:18.937 [nacos-grpc-client-executor-47.116.173.119-346] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14747 -19:29:18.937 [nacos-grpc-client-executor-47.116.173.119-346] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14747 -19:29:19.235 [nacos-grpc-client-executor-47.116.173.119-347] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14750 -19:29:19.235 [nacos-grpc-client-executor-47.116.173.119-347] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14750 -19:29:22.357 [nacos-grpc-client-executor-47.116.173.119-348] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14762 -19:29:22.357 [nacos-grpc-client-executor-47.116.173.119-348] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:29:22.357 [nacos-grpc-client-executor-47.116.173.119-348] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:29:22.358 [nacos-grpc-client-executor-47.116.173.119-348] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14762 -19:29:30.406 [parallel-1] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=3a16510bfd25, version=4, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.39:9701/actuator, healthUrl=http://10.113.37.39:9701/actuator/health, serviceUrl=http://10.113.37.39:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T11:28:42.735091400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:9701/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:9701/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:9701/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:9701/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:29:35.350 [nacos-grpc-client-executor-47.116.173.119-351] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14809 -19:29:35.350 [nacos-grpc-client-executor-47.116.173.119-351] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14809 -19:29:39.269 [nacos-grpc-client-executor-47.116.173.119-352] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14819 -19:29:39.269 [nacos-grpc-client-executor-47.116.173.119-352] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:29:39.270 [nacos-grpc-client-executor-47.116.173.119-352] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:29:39.271 [nacos-grpc-client-executor-47.116.173.119-352] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14819 -19:29:43.525 [nacos-grpc-client-executor-47.116.173.119-353] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14833 -19:29:43.526 [nacos-grpc-client-executor-47.116.173.119-353] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14833 -19:29:47.443 [nacos-grpc-client-executor-47.116.173.119-354] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14838 -19:29:47.444 [nacos-grpc-client-executor-47.116.173.119-354] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14838 -19:29:48.057 [nacos-grpc-client-executor-47.116.173.119-355] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 14843 -19:29:48.057 [nacos-grpc-client-executor-47.116.173.119-355] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 14843 -19:30:23.560 [nacos-grpc-client-executor-47.116.173.119-364] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15018 -19:30:23.560 [nacos-grpc-client-executor-47.116.173.119-364] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:23.560 [nacos-grpc-client-executor-47.116.173.119-364] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:23.561 [nacos-grpc-client-executor-47.116.173.119-364] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15018 -19:30:26.144 [nacos-grpc-client-executor-47.116.173.119-365] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15035 -19:30:26.144 [nacos-grpc-client-executor-47.116.173.119-365] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:26.144 [nacos-grpc-client-executor-47.116.173.119-365] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:26.145 [nacos-grpc-client-executor-47.116.173.119-365] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15035 -19:30:36.613 [nacos-grpc-client-executor-47.116.173.119-369] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15081 -19:30:36.613 [nacos-grpc-client-executor-47.116.173.119-369] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15081 -19:30:36.820 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Server check success, currentServer is 47.116.173.119:8848 -19:30:40.878 [nacos-grpc-client-executor-47.116.173.119-371] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15118 -19:30:40.878 [nacos-grpc-client-executor-47.116.173.119-371] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:40.878 [nacos-grpc-client-executor-47.116.173.119-371] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:40.878 [nacos-grpc-client-executor-47.116.173.119-371] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15118 -19:30:42.778 [nacos-grpc-client-executor-47.116.173.119-372] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15128 -19:30:42.778 [nacos-grpc-client-executor-47.116.173.119-372] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:42.778 [nacos-grpc-client-executor-47.116.173.119-372] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:42.779 [nacos-grpc-client-executor-47.116.173.119-372] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15128 -19:30:50.394 [parallel-16] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=3a16510bfd25, version=6, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.39:9701/actuator, healthUrl=http://10.113.37.39:9701/actuator/health, serviceUrl=http://10.113.37.39:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T11:29:43.936138600Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:9701/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:9701/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:9701/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:9701/actuator/info)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:30:54.382 [nacos-grpc-client-executor-47.116.173.119-375] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15179 -19:30:54.382 [nacos-grpc-client-executor-47.116.173.119-375] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:54.382 [nacos-grpc-client-executor-47.116.173.119-375] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:54.387 [nacos-grpc-client-executor-47.116.173.119-375] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15179 -19:30:56.291 [nacos-grpc-client-executor-47.116.173.119-376] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15182 -19:30:56.291 [nacos-grpc-client-executor-47.116.173.119-376] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:56.291 [nacos-grpc-client-executor-47.116.173.119-376] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:30:56.291 [nacos-grpc-client-executor-47.116.173.119-376] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15182 -19:31:07.199 [reactor-http-nio-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=3b686b81ca9d, version=5, registration=Registration(name=cloud-gen, managementUrl=http://10.113.37.39:9202/actuator, healthUrl=http://10.113.37.39:9202/actuator/health, serviceUrl=http://10.113.37.39:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T11:28:48.958001900Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:9202/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:9202/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:9202/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: Connection prematurely closed BEFORE response - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$HttpObserver.onUncaughtException(HttpClientConnect.java:403) - at reactor.netty.ReactorNetty$CompositeConnectionObserver.onUncaughtException(ReactorNetty.java:703) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onUncaughtException(DefaultPooledConnectionProvider.java:223) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnection.onUncaughtException(DefaultPooledConnectionProvider.java:476) - at reactor.netty.http.client.HttpClientOperations.onInboundClose(HttpClientOperations.java:325) - at reactor.netty.channel.ChannelOperationsHandler.channelInactive(ChannelOperationsHandler.java:73) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.ChannelInboundHandlerAdapter.channelInactive(ChannelInboundHandlerAdapter.java:81) - at io.netty.handler.codec.http.HttpContentDecoder.channelInactive(HttpContentDecoder.java:235) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelInactive(CombinedChannelDuplexHandler.java:418) - at io.netty.handler.codec.ByteToMessageDecoder.channelInputClosed(ByteToMessageDecoder.java:412) - at io.netty.handler.codec.ByteToMessageDecoder.channelInactive(ByteToMessageDecoder.java:377) - at io.netty.handler.codec.http.HttpClientCodec$Decoder.channelInactive(HttpClientCodec.java:410) - at io.netty.channel.CombinedChannelDuplexHandler.channelInactive(CombinedChannelDuplexHandler.java:221) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelInactive(DefaultChannelPipeline.java:1402) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:301) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.DefaultChannelPipeline.fireChannelInactive(DefaultChannelPipeline.java:900) - at io.netty.channel.AbstractChannel$AbstractUnsafe$7.run(AbstractChannel.java:811) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:566) - 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:833) -Caused by: reactor.netty.http.client.PrematureCloseException: Connection prematurely closed BEFORE response -19:31:07.274 [reactor-http-nio-5] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=4f338452823c, version=4, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.39:8080/actuator, healthUrl=http://10.113.37.39:8080/actuator/health, serviceUrl=http://10.113.37.39:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T11:27:22.679889700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:8080/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:8080/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:8080/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:8080/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: Connection prematurely closed BEFORE response - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: -Error has been observed at the following site(s): - *__checkpoint ⇢ Request to GET health [DefaultWebClient] -Original Stack Trace: - at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) - at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) - at reactor.core.publisher.Mono.subscribe(Mono.java:4568) - at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) - at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) - at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) - at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) - at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) - at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) - at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) - at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) - at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) - at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) - at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) - at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) - at reactor.netty.http.client.HttpClientConnect$HttpObserver.onUncaughtException(HttpClientConnect.java:403) - at reactor.netty.ReactorNetty$CompositeConnectionObserver.onUncaughtException(ReactorNetty.java:703) - at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onUncaughtException(DefaultPooledConnectionProvider.java:223) - at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnection.onUncaughtException(DefaultPooledConnectionProvider.java:476) - at reactor.netty.http.client.HttpClientOperations.onInboundClose(HttpClientOperations.java:325) - at reactor.netty.channel.ChannelOperationsHandler.channelInactive(ChannelOperationsHandler.java:73) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.ChannelInboundHandlerAdapter.channelInactive(ChannelInboundHandlerAdapter.java:81) - at io.netty.handler.codec.http.HttpContentDecoder.channelInactive(HttpContentDecoder.java:235) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.CombinedChannelDuplexHandler$DelegatingChannelHandlerContext.fireChannelInactive(CombinedChannelDuplexHandler.java:418) - at io.netty.handler.codec.ByteToMessageDecoder.channelInputClosed(ByteToMessageDecoder.java:412) - at io.netty.handler.codec.ByteToMessageDecoder.channelInactive(ByteToMessageDecoder.java:377) - at io.netty.handler.codec.http.HttpClientCodec$Decoder.channelInactive(HttpClientCodec.java:410) - at io.netty.channel.CombinedChannelDuplexHandler.channelInactive(CombinedChannelDuplexHandler.java:221) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:303) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.AbstractChannelHandlerContext.fireChannelInactive(AbstractChannelHandlerContext.java:274) - at io.netty.channel.DefaultChannelPipeline$HeadContext.channelInactive(DefaultChannelPipeline.java:1402) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:301) - at io.netty.channel.AbstractChannelHandlerContext.invokeChannelInactive(AbstractChannelHandlerContext.java:281) - at io.netty.channel.DefaultChannelPipeline.fireChannelInactive(DefaultChannelPipeline.java:900) - at io.netty.channel.AbstractChannel$AbstractUnsafe$7.run(AbstractChannel.java:811) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasksFrom(SingleThreadEventExecutor.java:425) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:374) - at io.netty.util.concurrent.SingleThreadEventExecutor.confirmShutdown(SingleThreadEventExecutor.java:760) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:596) - 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:833) -Caused by: reactor.netty.http.client.PrematureCloseException: Connection prematurely closed BEFORE response -19:31:07.899 [nacos-grpc-client-executor-47.116.173.119-378] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15218 -19:31:07.899 [nacos-grpc-client-executor-47.116.173.119-378] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15218 -19:31:07.899 [nacos-grpc-client-executor-47.116.173.119-379] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15222 -19:31:07.899 [nacos-grpc-client-executor-47.116.173.119-379] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:31:07.899 [nacos-grpc-client-executor-47.116.173.119-379] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:31:07.899 [nacos-grpc-client-executor-47.116.173.119-379] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15222 -19:31:07.978 [nacos-grpc-client-executor-47.116.173.119-380] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Receive server push request, request = NotifySubscriberRequest, requestId = 15225 -19:31:07.978 [nacos-grpc-client-executor-47.116.173.119-380] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:31:07.978 [nacos-grpc-client-executor-47.116.173.119-380] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"ipDeleteTimeout":30000,"instanceHeartBeatTimeOut":15000,"instanceHeartBeatInterval":5000}] -19:31:07.978 [nacos-grpc-client-executor-47.116.173.119-380] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [0689cd3f-accc-4330-bf56-640e2e5cecd5] Ack server push request, request = NotifySubscriberRequest, requestId = 15225 -19:31:09.488 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:31:09.488 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:31:09.566 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:31:09.567 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:31:09.568 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:31:09.568 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:31:09.568 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:31:09.568 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:31:09.568 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:31:09.568 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->0689cd3f-accc-4330-bf56-640e2e5cecd5 -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@4cc65ed6[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 527] -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@d66b58f[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:31:09.569 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726571085130_117.143.60.138_61416 -19:31:09.570 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@31297d09[Running, pool size = 6, active threads = 0, queued tasks = 0, completed tasks = 383] -19:31:09.570 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->0689cd3f-accc-4330-bf56-640e2e5cecd5 -19:31:09.570 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:31:09.570 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:31:09.571 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:31:49.997 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:31:50.688 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,61] - Ready to get current node abilities... -19:31:50.689 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,89] - Ready to initialize current node abilities, support modes: [SDK_CLIENT] -19:31:50.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.AbstractAbilityControlManager - [initAbilityTable,94] - Initialize current abilities finish... -19:31:50.690 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.a.d.NacosAbilityManagerHolder - [initAbilityControlManager,85] - [AbilityControlManager] Successfully initialize AbilityControlManager -19:31:51.043 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -19:31:51.044 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:31:51.045 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:31:51.099 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:31:51.390 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:31:51.846 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572712969_117.143.60.138_65368 -19:31:51.846 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Notify connected event to listeners. -19:31:51.846 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Connected,notify listen context... -19:31:53.397 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -19:31:53.663 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:31:53.664 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:31:53.664 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:31:53.668 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:31:53.671 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:31:53.671 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:31:54.951 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 62804b6a-bda9-44fd-a05f-dcafdcf21c04 -19:31:54.954 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->62804b6a-bda9-44fd-a05f-dcafdcf21c04 -19:31:54.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:31:54.955 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:31:54.956 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:31:54.957 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:54.957 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:31:57.970 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:31:57.970 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:32:00.975 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:32:00.975 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:32:02.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726572723878_117.143.60.138_65422 -19:32:02.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:32:02.393 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$557/0x0000000801059978 -19:32:02.393 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Notify connected event to listeners. -19:32:02.393 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:32:02.394 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:32:02.968 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.39:9101 register finished -19:32:03.569 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:32:03.570 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:32:03.977 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-auth# -19:32:05.078 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:05.087 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:05.206 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:32:05.206 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:32:05.265 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15481 -19:32:05.266 [nacos-grpc-client-executor-47.116.173.119-19] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15481 -19:32:05.711 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:05.712 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:05.716 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:32:05.717 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:32:05.838 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-gen -> [] -19:32:05.839 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gen -> [] -19:32:05.839 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:32:05.839 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:32:06.695 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15491 -19:32:06.695 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15491 -19:32:06.699 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15492 -19:32:06.699 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15492 -19:32:06.802 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:06.803 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:06.812 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:32:06.813 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:32:07.220 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15494 -19:32:07.220 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.220 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15494 -19:32:07.220 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:07.226 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:32:07.227 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:32:08.267 [com.alibaba.nacos.client.naming.grpc.redo.0] INFO c.a.n.client.naming - [redoForSubscribe,121] - Redo subscriber operation REGISTER for DEFAULT_GROUP@@cloud-monitor# -19:32:09.079 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:09.079 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:09.085 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -19:32:09.101 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 38.543 seconds (process running for 39.018) -19:32:09.107 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:32:09.107 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:32:09.108 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -19:32:09.108 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -19:32:09.108 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -19:32:09.108 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -19:32:09.108 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -19:32:09.109 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -19:32:09.109 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -19:32:09.109 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:32:09.110 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -19:32:09.136 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:32:09.414 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15500 -19:32:09.414 [nacos-grpc-client-executor-47.116.173.119-30] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15500 -19:32:09.419 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15503 -19:32:09.420 [nacos-grpc-client-executor-47.116.173.119-31] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15503 -19:32:14.215 [parallel-5] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=2337ecd17f54, version=0, registration=Registration(name=cloud-auth, managementUrl=http://192.168.153.1:9500/actuator, healthUrl=http://192.168.153.1:9500/actuator/health, serviceUrl=http://192.168.153.1:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:32:05.203588800Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:9500/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:14.729 [parallel-7] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=463aa40d21f6, version=0, registration=Registration(name=cloud-system, managementUrl=http://192.168.153.1:9701/actuator, healthUrl=http://192.168.153.1:9701/actuator/health, serviceUrl=http://192.168.153.1:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:32:05.713750Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:9701/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:15.820 [parallel-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a840d5826a3e, version=0, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.153.1:8080/actuator, healthUrl=http://192.168.153.1:8080/actuator/health, serviceUrl=http://192.168.153.1:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:32:06.809254100Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:8080/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:32:41.223 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Server healthy check fail, currentConnection = 1726572712969_117.143.60.138_65368 -19:32:41.223 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. -19:32:41.223 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:32:43.777 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Success to connect a server [47.116.173.119:8848], connectionId = 1726572764107_117.143.60.138_49166 -19:32:43.777 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Abandon prev connection, server is 47.116.173.119:8848, connectionId is 1726572712969_117.143.60.138_65368 -19:32:43.778 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572712969_117.143.60.138_65368 -19:32:43.778 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Notify disconnected event to listeners -19:32:43.778 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] DisConnected,clear listen context... -19:32:43.778 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Notify connected event to listeners. -19:32:43.778 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [042d5c40-2b43-4f6e-9689-29a941323c7f_config-0] Connected,notify listen context... -19:32:48.743 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15586 -19:32:48.744 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:48.744 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] -19:32:48.745 [nacos-grpc-client-executor-47.116.173.119-50] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15586 -19:32:49.327 [nacos-grpc-client-executor-47.116.173.119-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15591 -19:32:49.327 [nacos-grpc-client-executor-47.116.173.119-51] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:49.327 [nacos-grpc-client-executor-47.116.173.119-51] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:49.328 [nacos-grpc-client-executor-47.116.173.119-51] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15591 -19:32:51.403 [nacos-grpc-client-executor-47.116.173.119-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15597 -19:32:51.403 [nacos-grpc-client-executor-47.116.173.119-52] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:51.403 [nacos-grpc-client-executor-47.116.173.119-52] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:51.404 [nacos-grpc-client-executor-47.116.173.119-52] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15597 -19:32:57.533 [nacos-grpc-client-executor-47.116.173.119-53] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15613 -19:32:57.535 [nacos-grpc-client-executor-47.116.173.119-53] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15613 -19:32:59.633 [nacos-grpc-client-executor-47.116.173.119-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15617 -19:32:59.633 [nacos-grpc-client-executor-47.116.173.119-54] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:59.634 [nacos-grpc-client-executor-47.116.173.119-54] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:32:59.635 [nacos-grpc-client-executor-47.116.173.119-54] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15617 -19:32:59.637 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Receive server push request, request = NotifySubscriberRequest, requestId = 15626 -19:32:59.638 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:59.638 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:32:59.639 [nacos-grpc-client-executor-47.116.173.119-55] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [62804b6a-bda9-44fd-a05f-dcafdcf21c04] Ack server push request, request = NotifySubscriberRequest, requestId = 15626 -19:33:00.739 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:33:00.739 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:33:00.940 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:33:00.941 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:33:00.941 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:33:00.942 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:33:00.942 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:33:00.942 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:33:00.942 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:33:00.942 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:33:00.942 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:33:00.942 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:33:00.942 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:33:00.943 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:33:00.943 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->62804b6a-bda9-44fd-a05f-dcafdcf21c04 -19:33:00.943 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@40d7da91[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 20] -19:33:00.943 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:33:00.944 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@2edb62a5[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:33:00.944 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726572723878_117.143.60.138_65422 -19:33:00.945 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@2df222aa[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 57] -19:33:00.945 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->62804b6a-bda9-44fd-a05f-dcafdcf21c04 -19:33:00.945 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:33:00.945 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:33:00.946 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:36:35.386 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:36:36.877 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -19:36:36.880 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:36:36.881 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:36:36.948 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:36:37.333 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:36:39.580 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -19:36:39.893 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:36:39.894 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:36:39.894 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:36:39.901 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:36:39.905 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:36:39.906 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:36:40.016 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 121ffd7f-0973-4399-aeae-1a8d1f05b02e -19:36:40.018 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->121ffd7f-0973-4399-aeae-1a8d1f05b02e -19:36:40.019 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:36:40.019 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:36:40.019 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:36:40.020 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:36:40.021 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:36:40.106 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726573002732_117.143.60.138_49773 -19:36:40.107 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:36:40.107 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Notify connected event to listeners. -19:36:40.107 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801068870 -19:36:40.107 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:36:40.108 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:36:40.128 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.39:9101 register finished -19:36:40.157 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:36:40.157 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:36:40.183 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.194 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.431 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:36:40.431 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:36:40.480 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.481 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.488 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:36:40.489 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:36:40.511 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.512 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.519 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:36:40.520 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:36:40.549 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.553 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.566 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:36:40.567 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:36:40.606 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.607 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.614 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:36:40.614 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:36:40.642 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.643 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:36:40.655 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -19:36:40.659 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Receive server push request, request = NotifySubscriberRequest, requestId = 15914 -19:36:40.659 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Ack server push request, request = NotifySubscriberRequest, requestId = 15914 -19:36:40.683 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 8.161 seconds (process running for 8.8) -19:36:40.695 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:36:40.696 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:36:40.697 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -19:36:40.698 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -19:36:40.698 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -19:36:40.699 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -19:36:40.700 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -19:36:40.700 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -19:36:40.701 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -19:36:40.701 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:36:40.702 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -19:36:40.740 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:36:40.758 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Receive server push request, request = NotifySubscriberRequest, requestId = 15916 -19:36:40.759 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Ack server push request, request = NotifySubscriberRequest, requestId = 15916 -19:36:41.039 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Receive server push request, request = NotifySubscriberRequest, requestId = 15917 -19:36:41.040 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Ack server push request, request = NotifySubscriberRequest, requestId = 15917 -19:36:41.045 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Receive server push request, request = NotifySubscriberRequest, requestId = 15918 -19:36:41.046 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Ack server push request, request = NotifySubscriberRequest, requestId = 15918 -19:36:41.050 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Receive server push request, request = NotifySubscriberRequest, requestId = 15919 -19:36:41.051 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Ack server push request, request = NotifySubscriberRequest, requestId = 15919 -19:36:41.160 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Receive server push request, request = NotifySubscriberRequest, requestId = 15920 -19:36:41.161 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Ack server push request, request = NotifySubscriberRequest, requestId = 15920 -19:36:49.444 [parallel-5] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=2337ecd17f54, version=0, registration=Registration(name=cloud-auth, managementUrl=http://192.168.153.1:9500/actuator, healthUrl=http://192.168.153.1:9500/actuator/health, serviceUrl=http://192.168.153.1:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:36:40.427216Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:9500/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:36:49.490 [parallel-7] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=463aa40d21f6, version=0, registration=Registration(name=cloud-system, managementUrl=http://192.168.153.1:9701/actuator, healthUrl=http://192.168.153.1:9701/actuator/health, serviceUrl=http://192.168.153.1:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:36:40.483744700Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:9701/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:36:49.569 [parallel-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a840d5826a3e, version=0, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.153.1:8080/actuator, healthUrl=http://192.168.153.1:8080/actuator/health, serviceUrl=http://192.168.153.1:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:36:40.561260600Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:8080/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:38:15.844 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Receive server push request, request = NotifySubscriberRequest, requestId = 15922 -19:38:15.844 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:38:15.844 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] -19:38:15.845 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Ack server push request, request = NotifySubscriberRequest, requestId = 15922 -19:38:15.941 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Receive server push request, request = NotifySubscriberRequest, requestId = 15925 -19:38:15.942 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:38:15.943 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:38:15.943 [nacos-grpc-client-executor-47.116.173.119-47] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [121ffd7f-0973-4399-aeae-1a8d1f05b02e] Ack server push request, request = NotifySubscriberRequest, requestId = 15925 -19:38:17.516 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -19:38:17.516 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -19:38:17.539 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -19:38:17.539 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -19:38:17.539 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -19:38:17.540 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -19:38:17.540 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -19:38:17.540 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -19:38:17.540 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -19:38:17.540 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -19:38:17.540 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -19:38:17.540 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -19:38:17.540 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -19:38:17.541 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -19:38:17.541 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->121ffd7f-0973-4399-aeae-1a8d1f05b02e -19:38:17.541 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@33361695[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 32] -19:38:17.541 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -19:38:17.541 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@4f6045d2[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -19:38:17.541 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726573002732_117.143.60.138_49773 -19:38:17.545 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@4af0f57d[Running, pool size = 5, active threads = 0, queued tasks = 0, completed tasks = 49] -19:38:17.545 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->121ffd7f-0973-4399-aeae-1a8d1f05b02e -19:38:17.545 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -19:38:17.545 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -19:38:17.547 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -19:56:38.603 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -19:56:39.903 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -19:56:39.904 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -19:56:39.904 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -19:56:39.970 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -19:56:40.388 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -19:56:42.489 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -19:56:42.808 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -19:56:42.809 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -19:56:42.809 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -19:56:42.815 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -19:56:42.821 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.impl.NacosClientAuthServiceImpl success. -19:56:42.821 [main] INFO c.a.n.p.a.s.c.ClientAuthPluginManager - [init,56] - [ClientAuthPluginManager] Load ClientAuthService com.alibaba.nacos.client.auth.ram.RamClientAuthServiceImpl success. -19:56:43.082 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 74ccab1e-6e60-40f3-9a86-d7c92bc4c25b -19:56:43.083 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->74ccab1e-6e60-40f3-9a86-d7c92bc4c25b -19:56:43.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -19:56:43.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -19:56:43.084 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -19:56:43.085 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -19:56:43.085 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -19:56:43.816 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726574206310_117.143.60.138_51021 -19:56:43.817 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -19:56:43.817 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Notify connected event to listeners. -19:56:43.817 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801067d10 -19:56:43.817 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -19:56:43.818 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -19:56:43.947 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.39:9101 register finished -19:56:44.071 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -19:56:44.072 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -19:56:44.205 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:44.212 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:44.407 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -19:56:44.408 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -19:56:44.704 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:44.704 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:44.714 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -19:56:44.714 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -19:56:44.797 [nacos-grpc-client-executor-47.116.173.119-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16282 -19:56:44.797 [nacos-grpc-client-executor-47.116.173.119-13] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16282 -19:56:44.849 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:44.849 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:44.853 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -19:56:44.853 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -19:56:45.598 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:45.599 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:45.599 [nacos-grpc-client-executor-47.116.173.119-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16283 -19:56:45.600 [nacos-grpc-client-executor-47.116.173.119-16] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16283 -19:56:45.602 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16284 -19:56:45.603 [nacos-grpc-client-executor-47.116.173.119-17] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16284 -19:56:45.606 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16285 -19:56:45.607 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -19:56:45.607 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -19:56:45.607 [nacos-grpc-client-executor-47.116.173.119-18] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16285 -19:56:45.949 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:45.949 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:45.955 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -19:56:45.956 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -19:56:46.085 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:46.086 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:46.102 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -19:56:46.115 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 12.077 seconds (process running for 12.7) -19:56:46.121 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -19:56:46.121 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -19:56:46.122 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -19:56:46.122 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -19:56:46.122 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -19:56:46.123 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -19:56:46.123 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -19:56:46.123 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -19:56:46.124 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -19:56:46.124 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -19:56:46.124 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -19:56:46.142 [http-nio-9101-exec-1] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -19:56:46.486 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16286 -19:56:46.486 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16286 -19:56:46.584 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16287 -19:56:46.584 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16287 -19:56:47.750 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16290 -19:56:47.751 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.752 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:56:47.753 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16290 -19:56:53.408 [parallel-5] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=2337ecd17f54, version=0, registration=Registration(name=cloud-auth, managementUrl=http://192.168.153.1:9500/actuator, healthUrl=http://192.168.153.1:9500/actuator/health, serviceUrl=http://192.168.153.1:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:56:44.404040200Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:9500/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:56:53.718 [parallel-7] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=463aa40d21f6, version=0, registration=Registration(name=cloud-system, managementUrl=http://192.168.153.1:9701/actuator, healthUrl=http://192.168.153.1:9701/actuator/health, serviceUrl=http://192.168.153.1:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:56:44.706833300Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:9701/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:56:54.619 [parallel-19] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=a840d5826a3e, version=0, registration=Registration(name=cloud-gateway, managementUrl=http://192.168.153.1:8080/actuator, healthUrl=http://192.168.153.1:8080/actuator/health, serviceUrl=http://192.168.153.1:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-17T11:56:45.604564500Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://192.168.153.1:8080/actuator/health)}), buildVersion=null, tags=Tags(values={})) -java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) - at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) - at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) - at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) - at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) - at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) - at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) - at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) - at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -19:57:16.381 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: -19:57:16.381 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: -19:57:16.517 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:57:16.517 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:57:17.061 [nacos-grpc-client-executor-47.116.173.119-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16298 -19:57:17.062 [nacos-grpc-client-executor-47.116.173.119-39] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16298 -19:57:17.815 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16302 -19:57:17.816 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:57:17.818 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -19:57:17.819 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16302 -20:00:44.338 [nacos-grpc-client-executor-47.116.173.119-84] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16370 -20:00:44.338 [nacos-grpc-client-executor-47.116.173.119-84] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.20#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.20","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:44.338 [nacos-grpc-client-executor-47.116.173.119-84] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:44.338 [nacos-grpc-client-executor-47.116.173.119-84] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16370 -20:00:46.661 [nacos-grpc-client-executor-47.116.173.119-85] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16373 -20:00:46.661 [nacos-grpc-client-executor-47.116.173.119-85] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.20#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.20","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:46.661 [nacos-grpc-client-executor-47.116.173.119-85] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:46.661 [nacos-grpc-client-executor-47.116.173.119-85] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16373 -20:00:47.162 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '10ab7979c9fc' missing in DiscoveryClient services and will be removed. -20:00:47.162 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '0529770d75c7' missing in DiscoveryClient services and will be removed. -20:00:47.570 [nacos-grpc-client-executor-47.116.173.119-87] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16378 -20:00:47.570 [nacos-grpc-client-executor-47.116.173.119-87] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.20#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.20","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:47.570 [nacos-grpc-client-executor-47.116.173.119-87] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:00:47.570 [nacos-grpc-client-executor-47.116.173.119-87] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16378 -20:01:05.578 [reactor-http-nio-19] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=4f7d4d312ff0, version=2, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.20:9701/actuator, healthUrl=http://10.113.37.20:9701/actuator/health, serviceUrl=http://10.113.37.20:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T11:56:45.469989Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.20:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.20:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.20:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.20:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.20:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.20:9701/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.20:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.20:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.20:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.20:9701/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.20:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.20:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.20:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.20:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.20:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.20:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.20:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.20:9701/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.20:9701/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.20:9701 + at java.base/java.lang.Thread.run(Thread.java:842) +09:15:04.631 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'ca1ba7b5bb81' missing in DiscoveryClient services and will be removed. +09:15:09.147 [nacos-grpc-client-executor-110.42.213.184-89] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3655 +09:15:09.149 [nacos-grpc-client-executor-110.42.213.184-89] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:15:09.149 [nacos-grpc-client-executor-110.42.213.184-89] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:15:09.151 [nacos-grpc-client-executor-110.42.213.184-89] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3655 +09:21:38.475 [nacos-grpc-client-executor-110.42.213.184-175] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3663 +09:21:38.476 [nacos-grpc-client-executor-110.42.213.184-175] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-carRail -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-carRail","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:21:38.476 [nacos-grpc-client-executor-110.42.213.184-175] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-carRail -> [] +09:21:38.477 [nacos-grpc-client-executor-110.42.213.184-175] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3663 +09:21:47.093 [reactor-http-nio-6] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=2, registration=Registration(name=cloud-carRail, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-23T01:11:34.646425100Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={})) +org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:10011 at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: Error has been observed at the following site(s): @@ -3020,8 +1161,8 @@ Original Stack Trace: 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:833) -Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.20:9701 + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:10011 Caused by: java.net.ConnectException: Connection refused: no further information at java.base/sun.nio.ch.Net.pollConnect(Native Method) at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) @@ -3035,55 +1176,20 @@ Caused by: java.net.ConnectException: Connection refused: no further information 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:833) -20:01:17.275 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '4f7d4d312ff0' missing in DiscoveryClient services and will be removed. -20:01:22.328 [nacos-grpc-client-executor-47.116.173.119-95] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16381 -20:01:22.328 [nacos-grpc-client-executor-47.116.173.119-95] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:22.332 [nacos-grpc-client-executor-47.116.173.119-95] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:22.332 [nacos-grpc-client-executor-47.116.173.119-95] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16381 -20:01:27.286 [nacos-grpc-client-executor-47.116.173.119-96] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16384 -20:01:27.286 [nacos-grpc-client-executor-47.116.173.119-96] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:27.286 [nacos-grpc-client-executor-47.116.173.119-96] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:27.286 [nacos-grpc-client-executor-47.116.173.119-96] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16384 -20:01:35.128 [nacos-grpc-client-executor-47.116.173.119-97] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16389 -20:01:35.128 [nacos-grpc-client-executor-47.116.173.119-97] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:35.128 [nacos-grpc-client-executor-47.116.173.119-97] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(3) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:35.128 [nacos-grpc-client-executor-47.116.173.119-97] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16389 -20:01:45.004 [nacos-grpc-client-executor-47.116.173.119-101] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16401 -20:01:45.004 [nacos-grpc-client-executor-47.116.173.119-101] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:45.019 [nacos-grpc-client-executor-47.116.173.119-101] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:45.019 [nacos-grpc-client-executor-47.116.173.119-101] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16401 -20:01:47.532 [nacos-grpc-client-executor-47.116.173.119-103] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16411 -20:01:47.536 [nacos-grpc-client-executor-47.116.173.119-103] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:47.536 [nacos-grpc-client-executor-47.116.173.119-103] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:01:47.536 [nacos-grpc-client-executor-47.116.173.119-103] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16411 -20:02:09.016 [nacos-grpc-client-executor-47.116.173.119-109] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16422 -20:02:09.016 [nacos-grpc-client-executor-47.116.173.119-109] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"192.168.153.1#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"192.168.153.1","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:09.016 [nacos-grpc-client-executor-47.116.173.119-109] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:09.016 [nacos-grpc-client-executor-47.116.173.119-109] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16422 -20:02:11.076 [nacos-grpc-client-executor-47.116.173.119-110] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16427 -20:02:11.076 [nacos-grpc-client-executor-47.116.173.119-110] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"192.168.153.1#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"192.168.153.1","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:11.076 [nacos-grpc-client-executor-47.116.173.119-110] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:11.076 [nacos-grpc-client-executor-47.116.173.119-110] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16427 -20:02:14.315 [nacos-grpc-client-executor-47.116.173.119-111] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16433 -20:02:14.315 [nacos-grpc-client-executor-47.116.173.119-111] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"192.168.153.1#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"192.168.153.1","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD","IPv6":"[2001:0:2851:b9f0:2ce7:300d:8a70:c375]"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:14.315 [nacos-grpc-client-executor-47.116.173.119-111] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:02:14.319 [nacos-grpc-client-executor-47.116.173.119-111] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16433 -20:02:17.385 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '2337ecd17f54' missing in DiscoveryClient services and will be removed. -20:02:17.385 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'a840d5826a3e' missing in DiscoveryClient services and will be removed. -20:02:17.385 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '463aa40d21f6' missing in DiscoveryClient services and will be removed. -20:03:38.705 [nacos-grpc-client-executor-47.116.173.119-132] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16439 -20:03:38.706 [nacos-grpc-client-executor-47.116.173.119-132] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:03:38.706 [nacos-grpc-client-executor-47.116.173.119-132] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:03:38.706 [nacos-grpc-client-executor-47.116.173.119-132] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16439 -20:08:48.274 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-warn, group:DEFAULT_GROUP, clusters: -20:08:48.274 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-warn, group:DEFAULT_GROUP, cluster: -20:08:48.367 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(0) service: DEFAULT_GROUP@@cloud-warn -> [] -20:08:48.367 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-warn -> [] -20:08:48.939 [nacos-grpc-client-executor-47.116.173.119-213] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 16516 -20:08:48.939 [nacos-grpc-client-executor-47.116.173.119-213] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 16516 -20:34:51.516 [reactor-http-nio-14] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=4f338452823c, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.39:8080/actuator, healthUrl=http://10.113.37.39:8080/actuator/health, serviceUrl=http://10.113.37.39:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T11:57:16.794914200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:8080/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:8080/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:8080/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:8080/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task + at java.base/java.lang.Thread.run(Thread.java:842) +09:22:05.236 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: +09:22:05.236 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: +09:22:05.312 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:22:05.313 [HeartBeat-Task-Scheduler-1] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:22:05.786 [nacos-grpc-client-executor-110.42.213.184-182] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3666 +09:22:05.787 [nacos-grpc-client-executor-110.42.213.184-182] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3666 +09:29:51.384 [nacos-grpc-client-executor-110.42.213.184-282] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3667 +09:29:51.384 [nacos-grpc-client-executor-110.42.213.184-282] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:29:51.384 [nacos-grpc-client-executor-110.42.213.184-282] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:29:51.385 [nacos-grpc-client-executor-110.42.213.184-282] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3667 +09:30:06.705 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +09:30:07.042 [reactor-http-nio-9] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=5, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:22:05.584467500Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={})) +org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:10011 at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: Error has been observed at the following site(s): @@ -3129,41 +1235,51 @@ Original Stack Trace: at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) at reactor.core.publisher.Mono.subscribe(Mono.java:4568) at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) + at reactor.netty.transport.TransportConnector$MonoChannelPromise.tryFailure(TransportConnector.java:576) + at reactor.netty.transport.TransportConnector$MonoChannelPromise.setFailure(TransportConnector.java:522) + at reactor.netty.transport.TransportConnector.lambda$doConnect$7(TransportConnector.java:261) + at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) + at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583) + at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559) + at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) + at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) + at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) + at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:326) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:342) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:10011 +Caused by: java.net.ConnectException: Connection refused: no further information + at java.base/sun.nio.ch.Net.pollConnect(Native Method) + at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) + at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) + at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:336) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:339) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + 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:833) -20:34:51.516 [reactor-http-nio-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=d8d8353d530d, version=4, registration=Registration(name=cloud-gen, managementUrl=http://10.113.37.10:9202/actuator, healthUrl=http://10.113.37.10:9202/actuator/health, serviceUrl=http://10.113.37.10:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T12:03:31.837693500Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.10:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.10:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.10:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.10:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.10:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.10:9202/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.10:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.10:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.10:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.10:9202/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.10:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.10:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.10:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.10:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.10:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.10:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.10:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.10:9202/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.10:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task + at java.base/java.lang.Thread.run(Thread.java:842) +09:30:15.791 [nacos-grpc-client-executor-110.42.213.184-288] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3669 +09:30:15.791 [nacos-grpc-client-executor-110.42.213.184-288] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:30:15.791 [nacos-grpc-client-executor-110.42.213.184-288] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:30:15.792 [nacos-grpc-client-executor-110.42.213.184-288] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3669 +09:33:15.378 [nacos-grpc-client-executor-110.42.213.184-326] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3672 +09:33:15.378 [nacos-grpc-client-executor-110.42.213.184-326] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:33:15.378 [nacos-grpc-client-executor-110.42.213.184-326] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:33:15.379 [nacos-grpc-client-executor-110.42.213.184-326] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3672 +09:33:17.068 [reactor-http-nio-11] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=9, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:30:36.951163700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={})) +org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:10011 at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: Error has been observed at the following site(s): @@ -3209,41 +1325,51 @@ Original Stack Trace: at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) at reactor.core.publisher.Mono.subscribe(Mono.java:4568) at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) + at reactor.netty.transport.TransportConnector$MonoChannelPromise.tryFailure(TransportConnector.java:576) + at reactor.netty.transport.TransportConnector$MonoChannelPromise.setFailure(TransportConnector.java:522) + at reactor.netty.transport.TransportConnector.lambda$doConnect$7(TransportConnector.java:261) + at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) + at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583) + at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559) + at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) + at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) + at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) + at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:326) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:342) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:10011 +Caused by: java.net.ConnectException: Connection refused: no further information + at java.base/sun.nio.ch.Net.pollConnect(Native Method) + at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) + at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) + at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:336) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:339) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + 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:833) -20:34:51.516 [reactor-http-nio-15] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=8f60fd19c105, version=2, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.39:10010/actuator, healthUrl=http://10.113.37.39:10010/actuator/health, serviceUrl=http://10.113.37.39:10010, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T11:57:17.460897100Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.39:10010/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.39:10010/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.39:10010/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.39:10010/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.39:10010/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.39:10010/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.39:10010/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.39:10010/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.39:10010/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.39:10010/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.39:10010/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.39:10010/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.39:10010/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.39:10010/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.39:10010/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.39:10010/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.39:10010/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.39:10010/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.39:10010/actuator/info)}), buildVersion=null, tags=Tags(values={})) -org.springframework.web.reactive.function.client.WebClientRequestException: executor not accepting a task + at java.base/java.lang.Thread.run(Thread.java:842) +09:33:36.425 [nacos-grpc-client-executor-110.42.213.184-330] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3674 +09:33:36.425 [nacos-grpc-client-executor-110.42.213.184-330] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:33:36.426 [nacos-grpc-client-executor-110.42.213.184-330] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:33:36.427 [nacos-grpc-client-executor-110.42.213.184-330] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3674 +09:37:32.438 [nacos-grpc-client-executor-110.42.213.184-378] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3676 +09:37:32.439 [nacos-grpc-client-executor-110.42.213.184-378] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:37:32.439 [nacos-grpc-client-executor-110.42.213.184-378] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:37:32.440 [nacos-grpc-client-executor-110.42.213.184-378] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3676 +09:37:37.055 [reactor-http-nio-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=11, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:33:36.542037100Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={})) +org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:10011 at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: Error has been observed at the following site(s): @@ -3289,186 +1415,56 @@ Original Stack Trace: at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) at reactor.core.publisher.Mono.subscribe(Mono.java:4568) at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) - at reactor.core.publisher.Operators.error(Operators.java:198) - at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) - at reactor.core.publisher.InternalMonoOperator.subscribe(InternalMonoOperator.java:76) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:165) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) + at reactor.netty.transport.TransportConnector$MonoChannelPromise.tryFailure(TransportConnector.java:576) + at reactor.netty.transport.TransportConnector$MonoChannelPromise.setFailure(TransportConnector.java:522) + at reactor.netty.transport.TransportConnector.lambda$doConnect$7(TransportConnector.java:261) + at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) + at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583) + at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559) + at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) + at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) + at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) + at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:326) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:342) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + 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:833) -Caused by: java.lang.IllegalStateException: executor not accepting a task - at io.netty.resolver.AddressResolverGroup.getResolver(AddressResolverGroup.java:61) - at reactor.netty.transport.TransportConnector.doResolveAndConnect(TransportConnector.java:303) - at reactor.netty.transport.TransportConnector.lambda$connect$6(TransportConnector.java:165) - at reactor.core.publisher.MonoFlatMap$FlatMapMain.onNext(MonoFlatMap.java:132) - at reactor.netty.transport.TransportConnector$MonoChannelPromise._subscribe(TransportConnector.java:638) - at reactor.netty.transport.TransportConnector$MonoChannelPromise.lambda$subscribe$0(TransportConnector.java:550) - at io.netty.util.concurrent.AbstractEventExecutor.runTask$$$capture(AbstractEventExecutor.java:173) - at io.netty.util.concurrent.AbstractEventExecutor.runTask(AbstractEventExecutor.java) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute$$$capture(AbstractEventExecutor.java:166) - at io.netty.util.concurrent.AbstractEventExecutor.safeExecute(AbstractEventExecutor.java) - at io.netty.util.concurrent.SingleThreadEventExecutor.runAllTasks(SingleThreadEventExecutor.java:469) - at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:569) + at java.base/java.lang.Thread.run(Thread.java:842) +Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:10011 +Caused by: java.net.ConnectException: Connection refused: no further information + at java.base/sun.nio.ch.Net.pollConnect(Native Method) + at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) + at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) + at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:336) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:339) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + 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:833) -20:34:52.011 [nacos-grpc-client-executor-47.116.173.119-613] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 17268 -20:34:52.012 [nacos-grpc-client-executor-47.116.173.119-613] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:34:52.012 [nacos-grpc-client-executor-47.116.173.119-613] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:34:52.013 [nacos-grpc-client-executor-47.116.173.119-613] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 17268 -20:34:52.014 [nacos-grpc-client-executor-47.116.173.119-614] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Receive server push request, request = NotifySubscriberRequest, requestId = 17272 -20:34:52.014 [nacos-grpc-client-executor-47.116.173.119-614] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:34:52.015 [nacos-grpc-client-executor-47.116.173.119-614] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:34:52.015 [nacos-grpc-client-executor-47.116.173.119-614] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [74ccab1e-6e60-40f3-9a86-d7c92bc4c25b] Ack server push request, request = NotifySubscriberRequest, requestId = 17272 -20:34:53.596 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... -20:34:53.596 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] one deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} -20:34:53.715 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. -20:34:53.716 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin -20:34:53.717 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin -20:34:53.717 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop -20:34:53.717 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop -20:34:53.717 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin -20:34:53.717 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin -20:34:53.717 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop -20:34:53.717 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin -20:34:53.718 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop -20:34:53.718 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin -20:34:53.718 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop -20:34:53.718 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->74ccab1e-6e60-40f3-9a86-d7c92bc4c25b -20:34:53.718 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@704a7440[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 761] -20:34:53.718 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown -20:34:53.718 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@438158e6[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] -20:34:53.718 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1726574206310_117.143.60.138_51021 -20:34:53.721 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@74cb55d8[Running, pool size = 4, active threads = 0, queued tasks = 0, completed tasks = 616] -20:34:53.721 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->74ccab1e-6e60-40f3-9a86-d7c92bc4c25b -20:34:53.722 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped -20:34:53.722 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed -20:34:53.722 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop -20:35:22.830 [main] INFO c.m.m.m.CloudMonitorApplication - [logStartupProfileInfo,660] - The following 1 profile is active: "dev" -20:35:24.313 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Initializing ProtocolHandler ["http-nio-9101"] -20:35:24.316 [main] INFO o.a.c.c.StandardService - [log,173] - Starting service [Tomcat] -20:35:24.316 [main] INFO o.a.c.c.StandardEngine - [log,173] - Starting Servlet engine: [Apache Tomcat/10.1.24] -20:35:24.364 [main] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring embedded WebApplicationContext -20:35:24.713 [main] INFO c.a.c.s.SentinelWebMvcConfigurer - [addInterceptors,52] - [Sentinel Starter] register SentinelWebInterceptor with urlPatterns: [/**]. -20:35:26.626 [main] INFO o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-9101"] -20:35:26.848 [main] INFO c.a.n.client.naming - [initNamespaceForNaming,62] - initializer namespace from ans.namespace attribute : null -20:35:26.848 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$0,66] - initializer namespace from ALIBABA_ALIWARE_NAMESPACE attribute :null -20:35:26.849 [main] INFO c.a.n.client.naming - [lambda$initNamespaceForNaming$1,73] - initializer namespace from namespace attribute :null -20:35:26.853 [main] INFO c.a.n.client.naming - [,74] - FailoverDataSource type is class com.alibaba.nacos.client.naming.backups.datasource.DiskFailoverDataSource -20:35:26.856 [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:26.856 [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:27.061 [main] INFO c.a.n.c.r.client - [lambda$createClient$0,118] - [RpcClientFactory] create a new rpc client of 01ab8542-3970-4c02-9ee7-e77b3e1f96d2 -20:35:27.062 [main] INFO c.a.n.client.naming - [,109] - Create naming rpc client for uuid->01ab8542-3970-4c02-9ee7-e77b3e1f96d2 -20:35:27.063 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] RpcClient init, ServerListFactory = com.alibaba.nacos.client.naming.core.ServerListManager -20:35:27.063 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Registry connection listener to current client:com.alibaba.nacos.client.naming.remote.gprc.redo.NamingGrpcRedoService -20:35:27.063 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Register server push request handler:com.alibaba.nacos.client.naming.remote.gprc.NamingPushRequestHandler -20:35:27.064 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Try to connect to server on start up, server: {serverIp = '47.116.173.119', server main port = 8848} -20:35:27.064 [main] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:47.116.173.119 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} -20:35:27.356 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Success to connect to server [47.116.173.119:8848] on start up, connectionId = 1726576529910_117.143.60.138_57823 -20:35:27.357 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$ConnectResetRequestHandler -20:35:27.357 [main] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Register server push request handler:com.alibaba.nacos.common.remote.client.RpcClient$$Lambda$559/0x0000000801065e20 -20:35:27.357 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Notify connected event to listeners. -20:35:27.357 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.client.naming - [onConnected,90] - Grpc connection connect -20:35:27.358 [main] INFO c.a.n.client.naming - [registerService,133] - [REGISTER-SERVICE] one registering service cloud-monitor with instance Instance{instanceId='null', ip='10.113.37.39', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={IPv6=null, preserved.register.source=SPRING_CLOUD}} -20:35:27.407 [main] INFO c.a.c.n.r.NacosServiceRegistry - [register,76] - nacos registry, DEFAULT_GROUP cloud-monitor 10.113.37.39:9101 register finished -20:35:27.430 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-car, group:DEFAULT_GROUP, clusters: -20:35:27.430 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-car, group:DEFAULT_GROUP, cluster: -20:35:27.454 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.460 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"instanceId":"10.113.37.39#10010#DEFAULT#DEFAULT_GROUP@@cloud-car","ip":"10.113.37.39","port":10010,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.585 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-auth, group:DEFAULT_GROUP, clusters: -20:35:27.585 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-auth, group:DEFAULT_GROUP, cluster: -20:35:27.601 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.602 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.609 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-system, group:DEFAULT_GROUP, clusters: -20:35:27.609 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-system, group:DEFAULT_GROUP, cluster: -20:35:27.623 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.623 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.628 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gen, group:DEFAULT_GROUP, clusters: -20:35:27.628 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gen, group:DEFAULT_GROUP, cluster: -20:35:27.657 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.661 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.670 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-gateway, group:DEFAULT_GROUP, clusters: -20:35:27.671 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-gateway, group:DEFAULT_GROUP, cluster: -20:35:27.693 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.693 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.704 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-file, group:DEFAULT_GROUP, clusters: -20:35:27.704 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-file, group:DEFAULT_GROUP, cluster: -20:35:27.723 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.724 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.749 [main] INFO c.a.n.client.naming - [subscribe,164] - [SUBSCRIBE-SERVICE] service:cloud-monitor, group:DEFAULT_GROUP, clusters: -20:35:27.749 [main] INFO c.a.n.client.naming - [subscribe,377] - [GRPC-SUBSCRIBE] service:cloud-monitor, group:DEFAULT_GROUP, cluster: -20:35:27.780 [main] INFO c.a.n.client.naming - [isChangedServiceInfo,169] - init new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.780 [main] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:27.791 [main] INFO c.a.c.n.d.NacosDiscoveryHeartBeatPublisher - [start,66] - Start nacos heartBeat task scheduler. -20:35:27.813 [main] INFO c.m.m.m.CloudMonitorApplication - [logStarted,56] - Started CloudMonitorApplication in 7.812 seconds (process running for 8.495) -20:35:27.824 [main] INFO c.a.n.c.c.i.CacheData - [initNotifyWarnTimeout,72] - config listener notify warn timeout millis use default 60000 millis -20:35:27.824 [main] INFO c.a.n.c.c.i.CacheData - [,99] - nacos.cache.data.init.snapshot = true -20:35:27.824 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor+DEFAULT_GROUP+one -20:35:27.824 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor, group=DEFAULT_GROUP, cnt=1 -20:35:27.825 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor, group=DEFAULT_GROUP -20:35:27.825 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor.yml+DEFAULT_GROUP+one -20:35:27.825 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor.yml, group=DEFAULT_GROUP, cnt=1 -20:35:27.825 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor.yml, group=DEFAULT_GROUP -20:35:27.827 [main] INFO c.a.n.c.c.i.ClientWorker - [addCacheDataIfAbsent,416] - [fixed-one-47.116.173.119_8848] [subscribe] cloud-monitor-dev.yml+DEFAULT_GROUP+one -20:35:27.827 [main] INFO c.a.n.c.c.i.CacheData - [addListener,236] - [fixed-one-47.116.173.119_8848] [add-listener] ok, tenant=one, dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP, cnt=1 -20:35:27.827 [main] INFO c.a.c.n.r.NacosContextRefresher - [registerNacosListener,131] - [Nacos Config] Listening config: dataId=cloud-monitor-dev.yml, group=DEFAULT_GROUP -20:35:28.019 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17335 -20:35:28.019 [nacos-grpc-client-executor-47.116.173.119-20] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17335 -20:35:28.022 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17336 -20:35:28.023 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:28.024 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:28.025 [nacos-grpc-client-executor-47.116.173.119-21] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17336 -20:35:28.123 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17340 -20:35:28.123 [nacos-grpc-client-executor-47.116.173.119-22] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17340 -20:35:28.212 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17341 -20:35:28.213 [nacos-grpc-client-executor-47.116.173.119-23] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17341 -20:35:28.215 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17342 -20:35:28.216 [nacos-grpc-client-executor-47.116.173.119-24] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17342 -20:35:28.228 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17343 -20:35:28.228 [nacos-grpc-client-executor-47.116.173.119-25] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17343 -20:35:28.311 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17344 -20:35:28.311 [nacos-grpc-client-executor-47.116.173.119-26] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17344 -20:35:28.345 [RMI TCP Connection(2)-10.113.37.39] INFO o.a.c.c.C.[.[.[/] - [log,173] - Initializing Spring DispatcherServlet 'dispatcherServlet' -20:35:38.796 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17345 -20:35:38.796 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:38.797 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(2) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000},{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:35:38.798 [nacos-grpc-client-executor-47.116.173.119-29] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17345 -20:36:28.014 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17392 -20:36:28.014 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.10#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.10","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:28.014 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-file -> [{"instanceId":"10.113.37.39#9300#DEFAULT#DEFAULT_GROUP@@cloud-file","ip":"10.113.37.39","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:28.014 [nacos-grpc-client-executor-47.116.173.119-40] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17392 -20:36:28.102 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '561ba964eaae' missing in DiscoveryClient services and will be removed. -20:36:28.122 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17396 -20:36:28.123 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.10#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.10","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:28.123 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-auth -> [{"instanceId":"10.113.37.39#9500#DEFAULT#DEFAULT_GROUP@@cloud-auth","ip":"10.113.37.39","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:28.123 [nacos-grpc-client-executor-47.116.173.119-42] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17396 -20:36:30.118 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17400 -20:36:30.118 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.10#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.10","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:30.118 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"instanceId":"10.113.37.39#8080#DEFAULT#DEFAULT_GROUP@@cloud-gateway","ip":"10.113.37.39","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:30.118 [nacos-grpc-client-executor-47.116.173.119-43] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17400 -20:36:30.134 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17401 -20:36:30.134 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.10#9100#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.10","port":9100,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:30.134 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-monitor -> [{"instanceId":"10.113.37.39#9101#DEFAULT#DEFAULT_GROUP@@cloud-monitor","ip":"10.113.37.39","port":9101,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-monitor","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:30.134 [nacos-grpc-client-executor-47.116.173.119-44] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17401 -20:36:31.549 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17406 -20:36:31.549 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.10#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.10","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:31.553 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gen -> [{"instanceId":"10.113.37.39#9202#DEFAULT#DEFAULT_GROUP@@cloud-gen","ip":"10.113.37.39","port":9202,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gen","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:31.557 [nacos-grpc-client-executor-47.116.173.119-45] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17406 -20:36:32.461 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Receive server push request, request = NotifySubscriberRequest, requestId = 17409 -20:36:32.461 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.10#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.10","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:32.461 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-system -> [{"instanceId":"10.113.37.39#9701#DEFAULT#DEFAULT_GROUP@@cloud-system","ip":"10.113.37.39","port":9701,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] -20:36:32.461 [nacos-grpc-client-executor-47.116.173.119-46] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [01ab8542-3970-4c02-9ee7-e77b3e1f96d2] Ack server push request, request = NotifySubscriberRequest, requestId = 17409 -20:36:54.797 [parallel-11] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=697510a8df5a, version=1, registration=Registration(name=cloud-monitor, managementUrl=http://10.113.37.10:9100/actuator, healthUrl=http://10.113.37.10:9100/actuator/health, serviceUrl=http://10.113.37.10:9100, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T12:35:27.843843100Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.10:9100/actuator/health)}), buildVersion=null, tags=Tags(values={})) + at java.base/java.lang.Thread.run(Thread.java:842) +09:37:39.159 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +09:37:55.852 [nacos-grpc-client-executor-110.42.213.184-384] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3678 +09:37:55.853 [nacos-grpc-client-executor-110.42.213.184-384] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:37:55.853 [nacos-grpc-client-executor-110.42.213.184-384] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:37:55.854 [nacos-grpc-client-executor-110.42.213.184-384] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3678 +09:41:47.096 [nacos-grpc-client-executor-110.42.213.184-430] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3680 +09:41:47.097 [nacos-grpc-client-executor-110.42.213.184-430] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:41:47.097 [nacos-grpc-client-executor-110.42.213.184-430] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:41:47.098 [nacos-grpc-client-executor-110.42.213.184-430] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3680 +09:42:07.646 [nacos-grpc-client-executor-110.42.213.184-434] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3682 +09:42:07.647 [nacos-grpc-client-executor-110.42.213.184-434] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:42:07.647 [nacos-grpc-client-executor-110.42.213.184-434] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:42:07.648 [nacos-grpc-client-executor-110.42.213.184-434] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3682 +09:55:51.654 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Server check success, currentServer is 110.42.213.184:8848 +09:56:44.037 [parallel-7] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=78b455a9d6ba, version=2, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.107:9707/actuator, healthUrl=http://10.113.37.107:9707/actuator/health, serviceUrl=http://10.113.37.107:9707, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:12:04.508631900Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9707/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9707/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9707/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9707/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9707/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9707/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9707/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9707/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9707/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9707/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9707/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9707/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9707/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9707/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9707/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9707/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9707/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9707/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9707/actuator/info)}), buildVersion=null, tags=Tags(values={})) java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) @@ -3478,13 +1474,12 @@ java.util.concurrent.TimeoutException: Did not observe any item or terminal sign at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:54.797 [parallel-15] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=7db0e06ceffe, version=2, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.10:9701/actuator, healthUrl=http://10.113.37.10:9701/actuator/health, serviceUrl=http://10.113.37.10:9701, source=discovery), registered=true, statusInfo=StatusInfo(status=DOWN, details={}), statusTimestamp=2024-09-17T12:35:27.722808900Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.10:9701/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.10:9701/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.10:9701/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.10:9701/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.10:9701/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.10:9701/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.10:9701/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.10:9701/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.10:9701/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.10:9701/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.10:9701/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.10:9701/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.10:9701/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.10:9701/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.10:9701/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.10:9701/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.10:9701/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.10:9701/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.10:9701/actuator/info)}), buildVersion=null, tags=Tags(values={})) + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:54.047 [parallel-1] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=16, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:38:09.587432700Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={})) java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) @@ -3494,13 +1489,12 @@ java.util.concurrent.TimeoutException: Did not observe any item or terminal sign at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:54.797 [parallel-13] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=d64a7b715977, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.10:8080/actuator, healthUrl=http://10.113.37.10:8080/actuator/health, serviceUrl=http://10.113.37.10:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T12:35:27.779324400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.10:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.10:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.10:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.10:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.10:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.10:8080/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.10:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.10:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.10:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.10:8080/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.10:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.10:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.10:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.10:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.10:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.10:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.10:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.10:8080/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.10:8080/actuator/info)}), buildVersion=null, tags=Tags(values={})) + at java.base/java.lang.Thread.run(Thread.java:842) +09:56:54.047 [parallel-15] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=be0f7e53e806, version=2, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8080/actuator, healthUrl=http://10.113.37.107:8080/actuator/health, serviceUrl=http://10.113.37.107:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:15:34.799368400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8080/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8080/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8080/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8080/actuator/info)}), buildVersion=null, tags=Tags(values={})) java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) @@ -3510,13 +1504,61 @@ java.util.concurrent.TimeoutException: Did not observe any item or terminal sign at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:54.797 [parallel-17] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=d8d8353d530d, version=2, registration=Registration(name=cloud-gen, managementUrl=http://10.113.37.10:9202/actuator, healthUrl=http://10.113.37.10:9202/actuator/health, serviceUrl=http://10.113.37.10:9202, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T12:35:27.777323200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.10:9202/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.10:9202/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.10:9202/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.10:9202/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.10:9202/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.10:9202/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.10:9202/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.10:9202/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.10:9202/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.10:9202/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.10:9202/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.10:9202/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.10:9202/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.10:9202/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.10:9202/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.10:9202/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.10:9202/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.10:9202/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.10:9202/actuator/info)}), buildVersion=null, tags=Tags(values={})) + at java.base/java.lang.Thread.run(Thread.java:842) +09:57:03.035 [nacos-grpc-client-executor-110.42.213.184-615] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3684 +09:57:03.035 [nacos-grpc-client-executor-110.42.213.184-615] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:03.035 [nacos-grpc-client-executor-110.42.213.184-615] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-gateway -> [] +09:57:03.036 [nacos-grpc-client-executor-110.42.213.184-615] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3684 +09:57:03.645 [nacos-grpc-client-executor-110.42.213.184-616] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3685 +09:57:03.646 [nacos-grpc-client-executor-110.42.213.184-616] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:03.646 [nacos-grpc-client-executor-110.42.213.184-616] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-gateway -> [{"ip":"10.113.37.107","port":8080,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-gateway","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:03.647 [nacos-grpc-client-executor-110.42.213.184-616] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3685 +09:57:12.774 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Server healthy check fail, currentConnection = 1727053847748_117.143.60.138_55850 +09:57:12.774 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:57:12.775 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:57:13.775 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056633951_117.143.60.138_55354 +09:57:13.775 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727053847748_117.143.60.138_55850 +09:57:13.775 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053847748_117.143.60.138_55850 +09:57:13.780 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Notify disconnected event to listeners +09:57:13.781 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] DisConnected,clear listen context... +09:57:13.781 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Notify connected event to listeners. +09:57:13.781 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Connected,notify listen context... +09:57:17.287 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'be0f7e53e806' missing in DiscoveryClient services and will be removed. +09:57:17.287 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '78b455a9d6ba' missing in DiscoveryClient services and will be removed. +09:57:17.287 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '1a62d93d9101' missing in DiscoveryClient services and will be removed. +09:57:17.288 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +09:57:17.288 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed. +09:57:17.288 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed. +09:57:18.958 [nacos-grpc-client-executor-110.42.213.184-618] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3693 +09:57:18.959 [nacos-grpc-client-executor-110.42.213.184-618] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3693 +09:57:19.716 [nacos-grpc-client-executor-110.42.213.184-620] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3696 +09:57:19.716 [nacos-grpc-client-executor-110.42.213.184-620] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:19.716 [nacos-grpc-client-executor-110.42.213.184-620] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:57:19.717 [nacos-grpc-client-executor-110.42.213.184-620] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3696 +09:57:19.718 [nacos-grpc-client-executor-110.42.213.184-624] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3698 +09:57:19.718 [nacos-grpc-client-executor-110.42.213.184-624] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:19.719 [nacos-grpc-client-executor-110.42.213.184-624] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:19.719 [nacos-grpc-client-executor-110.42.213.184-624] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3698 +09:57:19.721 [nacos-grpc-client-executor-110.42.213.184-625] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3700 +09:57:19.721 [nacos-grpc-client-executor-110.42.213.184-625] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3700 +09:57:22.898 [nacos-grpc-client-executor-110.42.213.184-626] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3701 +09:57:22.899 [nacos-grpc-client-executor-110.42.213.184-626] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3701 +09:57:22.900 [nacos-grpc-client-executor-110.42.213.184-628] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3703 +09:57:22.900 [nacos-grpc-client-executor-110.42.213.184-628] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3703 +09:57:23.285 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Server check success, currentServer is 110.42.213.184:8848 +09:57:49.572 [nacos-grpc-client-executor-110.42.213.184-635] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3704 +09:57:49.572 [nacos-grpc-client-executor-110.42.213.184-635] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:49.572 [nacos-grpc-client-executor-110.42.213.184-635] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +09:57:49.573 [nacos-grpc-client-executor-110.42.213.184-635] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3704 +09:57:53.668 [nacos-grpc-client-executor-110.42.213.184-637] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3706 +09:57:53.668 [nacos-grpc-client-executor-110.42.213.184-637] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:53.668 [nacos-grpc-client-executor-110.42.213.184-637] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +09:57:53.669 [nacos-grpc-client-executor-110.42.213.184-637] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3706 +09:57:58.589 [parallel-15] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=be0f7e53e806, version=5, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8080/actuator, healthUrl=http://10.113.37.107:8080/actuator/health, serviceUrl=http://10.113.37.107:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UNKNOWN, details={}), statusTimestamp=2024-09-23T01:57:49.574930800Z, info=Info(values={}), endpoints=Endpoints(endpoints={health=Endpoint(id=health, url=http://10.113.37.107:8080/actuator/health)}), buildVersion=null, tags=Tags(values={})) java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) @@ -3526,13 +1568,28 @@ java.util.concurrent.TimeoutException: Did not observe any item or terminal sign at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:54.797 [parallel-3] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=c5616961f568, version=2, registration=Registration(name=cloud-auth, managementUrl=http://10.113.37.10:9500/actuator, healthUrl=http://10.113.37.10:9500/actuator/health, serviceUrl=http://10.113.37.10:9500, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-17T12:35:27.722808900Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.10:9500/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.10:9500/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.10:9500/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.10:9500/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.10:9500/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.10:9500/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.10:9500/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.10:9500/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.10:9500/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.10:9500/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.10:9500/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.10:9500/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.10:9500/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.10:9500/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.10:9500/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.10:9500/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.10:9500/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.10:9500/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.10:9500/actuator/info)}), buildVersion=null, tags=Tags(values={})) + at java.base/java.lang.Thread.run(Thread.java:842) +09:58:22.593 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'be0f7e53e806' missing in DiscoveryClient services and will be removed. +09:58:22.595 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '78b455a9d6ba' missing in DiscoveryClient services and will be removed. +09:58:22.595 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '1a62d93d9101' missing in DiscoveryClient services and will be removed. +09:58:22.595 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed. +09:58:22.595 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed. +09:58:24.424 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Server check success, currentServer is 110.42.213.184:8848 +09:59:28.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Server healthy check fail, currentConnection = 1727056633951_117.143.60.138_55354 +09:59:28.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +09:59:28.311 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +09:59:29.044 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056769103_117.143.60.138_55563 +09:59:29.044 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056633951_117.143.60.138_55354 +09:59:29.044 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056633951_117.143.60.138_55354 +09:59:29.044 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Notify disconnected event to listeners +09:59:29.045 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] DisConnected,clear listen context... +09:59:29.045 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Notify connected event to listeners. +09:59:29.045 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Connected,notify listen context... +10:00:14.027 [parallel-7] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=be0f7e53e806, version=10, registration=Registration(name=cloud-gateway, managementUrl=http://10.113.37.107:8080/actuator, healthUrl=http://10.113.37.107:8080/actuator/health, serviceUrl=http://10.113.37.107:8080, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:58:54.174464800Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:8080/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:8080/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:8080/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:8080/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:8080/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:8080/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:8080/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:8080/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:8080/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:8080/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:8080/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:8080/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:8080/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:8080/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:8080/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:8080/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:8080/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:8080/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:8080/actuator/info)}), buildVersion=null, tags=Tags(values={})) java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) @@ -3542,14 +1599,211 @@ java.util.concurrent.TimeoutException: Did not observe any item or terminal sign at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) - at java.base/java.util.concurrent.FutureTask.run$$$capture(FutureTask.java:264) - at java.base/java.util.concurrent.FutureTask.run(FutureTask.java) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) - at java.base/java.lang.Thread.run(Thread.java:833) -20:36:58.265 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '697510a8df5a' missing in DiscoveryClient services and will be removed. -20:36:58.266 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'd64a7b715977' missing in DiscoveryClient services and will be removed. -20:36:58.267 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '7db0e06ceffe' missing in DiscoveryClient services and will be removed. -20:36:58.267 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'd8d8353d530d' missing in DiscoveryClient services and will be removed. -20:36:58.267 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'c5616961f568' missing in DiscoveryClient services and will be removed. + at java.base/java.lang.Thread.run(Thread.java:842) +10:00:54.038 [parallel-3] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=22, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:58:54.945009200Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:01:21.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Server healthy check fail, currentConnection = 1727056769103_117.143.60.138_55563 +10:01:21.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +10:01:21.956 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:01:24.997 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056883118_117.143.60.138_55885 +10:01:24.997 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056769103_117.143.60.138_55563 +10:01:24.997 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056769103_117.143.60.138_55563 +10:01:24.998 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Notify disconnected event to listeners +10:01:24.998 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] DisConnected,clear listen context... +10:01:24.998 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Notify connected event to listeners. +10:01:24.998 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Connected,notify listen context... +10:01:26.010 [nacos-grpc-client-executor-110.42.213.184-682] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3708 +10:01:26.011 [nacos-grpc-client-executor-110.42.213.184-682] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3708 +10:01:26.012 [nacos-grpc-client-executor-110.42.213.184-685] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3712 +10:01:26.012 [nacos-grpc-client-executor-110.42.213.184-685] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3712 +10:01:26.392 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Try to reconnect to a new server, server is not appointed, will choose a random server. +10:01:26.392 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.c.g.GrpcClient - [createNewManagedChannel,210] - grpc client connection server:110.42.213.184 ip,serverPort:9848,grpcTslConfig:{"sslProvider":"","enableTls":false,"mutualAuthEnable":false,"trustAll":false} +10:01:27.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Success to connect a server [110.42.213.184:8848], connectionId = 1727056887096_117.143.60.138_55903 +10:01:27.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Abandon prev connection, server is 110.42.213.184:8848, connectionId is 1727056883118_117.143.60.138_55885 +10:01:27.242 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727056883118_117.143.60.138_55885 +10:01:27.242 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Notify disconnected event to listeners +10:01:27.242 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onDisConnect,720] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] DisConnected,clear listen context... +10:01:27.242 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Notify connected event to listeners. +10:01:27.242 [com.alibaba.nacos.client.remote.worker.0] INFO c.a.n.c.c.i.ClientWorker - [onConnected,713] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Connected,notify listen context... +10:01:29.744 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Server check success, currentServer is 110.42.213.184:8848 +10:01:30.192 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Server check success, currentServer is 110.42.213.184:8848 +10:01:30.847 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [daa2c91a-9ce9-462a-934c-7c8ecdda26ee_config-0] Server check success, currentServer is 110.42.213.184:8848 +10:02:04.036 [parallel-4] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=78b455a9d6ba, version=14, registration=Registration(name=cloud-system, managementUrl=http://10.113.37.107:9707/actuator, healthUrl=http://10.113.37.107:9707/actuator/health, serviceUrl=http://10.113.37.107:9707, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T01:59:36.722164900Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:9707/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:9707/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:9707/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:9707/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:9707/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:9707/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:9707/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:9707/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:9707/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:9707/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:9707/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:9707/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:9707/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:9707/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:9707/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:9707/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:9707/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:9707/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:9707/actuator/info)}), buildVersion=null, tags=Tags(values={})) +java.util.concurrent.TimeoutException: Did not observe any item or terminal signal within 9000ms in 'log' (and no fallback has been configured) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.handleTimeout(FluxTimeout.java:296) + at reactor.core.publisher.FluxTimeout$TimeoutMainSubscriber.doTimeout(FluxTimeout.java:281) + at reactor.core.publisher.FluxTimeout$TimeoutTimeoutSubscriber.onNext(FluxTimeout.java:420) + at reactor.core.publisher.FluxOnErrorReturn$ReturnSubscriber.onNext(FluxOnErrorReturn.java:162) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.propagateDelay(MonoDelay.java:270) + at reactor.core.publisher.MonoDelay$MonoDelayRunnable.run(MonoDelay.java:285) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:68) + at reactor.core.scheduler.SchedulerTask.call(SchedulerTask.java:28) + at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264) + at java.base/java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:304) + at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) + at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) + at java.base/java.lang.Thread.run(Thread.java:842) +10:05:34.470 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'be0f7e53e806' missing in DiscoveryClient services and will be removed. +10:05:34.471 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '78b455a9d6ba' missing in DiscoveryClient services and will be removed. +10:05:34.471 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '1a62d93d9101' missing in DiscoveryClient services and will be removed. +10:05:34.471 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +10:05:34.471 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e715406138b5' missing in DiscoveryClient services and will be removed. +10:05:34.471 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance '6fab02a62a90' missing in DiscoveryClient services and will be removed. +10:05:44.773 [com.alibaba.nacos.client.remote.worker.1] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Server check success, currentServer is 110.42.213.184:8848 +10:15:41.675 [nacos-grpc-client-executor-110.42.213.184-864] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3719 +10:15:41.675 [nacos-grpc-client-executor-110.42.213.184-864] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:15:41.675 [nacos-grpc-client-executor-110.42.213.184-864] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +10:15:41.677 [nacos-grpc-client-executor-110.42.213.184-864] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3719 +10:15:47.078 [reactor-http-nio-11] INFO d.c.b.a.s.s.StatusUpdater - [logError,147] - Couldn't retrieve status for Instance(id=e346b95e8d7a, version=28, registration=Registration(name=cloud-car, managementUrl=http://10.113.37.107:10011/actuator, healthUrl=http://10.113.37.107:10011/actuator/health, serviceUrl=http://10.113.37.107:10011, source=discovery), registered=true, statusInfo=StatusInfo(status=UP, details={}), statusTimestamp=2024-09-23T02:06:05.413156400Z, info=Info(values={}), endpoints=Endpoints(endpoints={sentinel=Endpoint(id=sentinel, url=http://10.113.37.107:10011/actuator/sentinel), caches=Endpoint(id=caches, url=http://10.113.37.107:10011/actuator/caches), loggers=Endpoint(id=loggers, url=http://10.113.37.107:10011/actuator/loggers), nacosconfig=Endpoint(id=nacosconfig, url=http://10.113.37.107:10011/actuator/nacosconfig), health=Endpoint(id=health, url=http://10.113.37.107:10011/actuator/health), refresh=Endpoint(id=refresh, url=http://10.113.37.107:10011/actuator/refresh), env=Endpoint(id=env, url=http://10.113.37.107:10011/actuator/env), nacosdiscovery=Endpoint(id=nacosdiscovery, url=http://10.113.37.107:10011/actuator/nacosdiscovery), serviceregistry=Endpoint(id=serviceregistry, url=http://10.113.37.107:10011/actuator/serviceregistry), heapdump=Endpoint(id=heapdump, url=http://10.113.37.107:10011/actuator/heapdump), features=Endpoint(id=features, url=http://10.113.37.107:10011/actuator/features), scheduledtasks=Endpoint(id=scheduledtasks, url=http://10.113.37.107:10011/actuator/scheduledtasks), mappings=Endpoint(id=mappings, url=http://10.113.37.107:10011/actuator/mappings), beans=Endpoint(id=beans, url=http://10.113.37.107:10011/actuator/beans), configprops=Endpoint(id=configprops, url=http://10.113.37.107:10011/actuator/configprops), threaddump=Endpoint(id=threaddump, url=http://10.113.37.107:10011/actuator/threaddump), metrics=Endpoint(id=metrics, url=http://10.113.37.107:10011/actuator/metrics), conditions=Endpoint(id=conditions, url=http://10.113.37.107:10011/actuator/conditions), info=Endpoint(id=info, url=http://10.113.37.107:10011/actuator/info)}), buildVersion=null, tags=Tags(values={})) +org.springframework.web.reactive.function.client.WebClientRequestException: Connection refused: no further information: /10.113.37.107:10011 + at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) + Suppressed: reactor.core.publisher.FluxOnAssembly$OnAssemblyException: +Error has been observed at the following site(s): + *__checkpoint ⇢ Request to GET health [DefaultWebClient] +Original Stack Trace: + at org.springframework.web.reactive.function.client.ExchangeFunctions$DefaultExchangeFunction.lambda$wrapException$9(ExchangeFunctions.java:136) + at reactor.core.publisher.MonoErrorSupplied.subscribe(MonoErrorSupplied.java:55) + at reactor.core.publisher.Mono.subscribe(Mono.java:4568) + at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) + at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) + at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) + at reactor.core.publisher.FluxPeek$PeekSubscriber.onError(FluxPeek.java:222) + at reactor.core.publisher.MonoNext$NextSubscriber.onError(MonoNext.java:93) + at reactor.core.publisher.MonoFlatMapMany$FlatMapManyMain.onError(MonoFlatMapMany.java:205) + at reactor.core.publisher.SerializedSubscriber.onError(SerializedSubscriber.java:124) + at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.whenError(FluxRetryWhen.java:229) + at reactor.core.publisher.FluxRetryWhen$RetryWhenOtherSubscriber.onError(FluxRetryWhen.java:279) + at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onError(FluxContextWrite.java:121) + at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.maybeOnError(FluxConcatMapNoPrefetch.java:327) + at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.onNext(FluxConcatMapNoPrefetch.java:212) + at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.onNext(FluxContextWrite.java:107) + at reactor.core.publisher.SinkManyEmitterProcessor.drain(SinkManyEmitterProcessor.java:476) + at reactor.core.publisher.SinkManyEmitterProcessor$EmitterInner.drainParent(SinkManyEmitterProcessor.java:620) + at reactor.core.publisher.FluxPublish$PubSubInner.request(FluxPublish.java:874) + at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) + at reactor.core.publisher.FluxConcatMapNoPrefetch$FluxConcatMapNoPrefetchSubscriber.request(FluxConcatMapNoPrefetch.java:337) + at reactor.core.publisher.FluxContextWrite$ContextWriteSubscriber.request(FluxContextWrite.java:136) + at reactor.core.publisher.Operators$DeferredSubscription.request(Operators.java:1743) + at reactor.core.publisher.FluxRetryWhen$RetryWhenMainSubscriber.onError(FluxRetryWhen.java:196) + at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) + at reactor.netty.http.client.HttpClientConnect$MonoHttpConnect$ClientTransportSubscriber.onError(HttpClientConnect.java:311) + at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) + at reactor.netty.resources.DefaultPooledConnectionProvider$DisposableAcquire.onError(DefaultPooledConnectionProvider.java:172) + at reactor.netty.internal.shaded.reactor.pool.AbstractPool$Borrower.fail(AbstractPool.java:488) + at reactor.netty.internal.shaded.reactor.pool.SimpleDequePool.lambda$drainLoop$9(SimpleDequePool.java:436) + at reactor.core.publisher.FluxDoOnEach$DoOnEachSubscriber.onError(FluxDoOnEach.java:186) + at reactor.core.publisher.MonoCreate$DefaultMonoSink.error(MonoCreate.java:205) + at reactor.netty.resources.DefaultPooledConnectionProvider$PooledConnectionAllocator$PooledConnectionInitializer.onError(DefaultPooledConnectionProvider.java:583) + at reactor.core.publisher.MonoFlatMap$FlatMapMain.secondError(MonoFlatMap.java:241) + at reactor.core.publisher.MonoFlatMap$FlatMapInner.onError(MonoFlatMap.java:315) + at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:106) + at reactor.core.publisher.Operators.error(Operators.java:198) + at reactor.core.publisher.MonoError.subscribe(MonoError.java:53) + at reactor.core.publisher.Mono.subscribe(Mono.java:4568) + at reactor.core.publisher.FluxOnErrorResume$ResumeSubscriber.onError(FluxOnErrorResume.java:103) + at reactor.netty.transport.TransportConnector$MonoChannelPromise.tryFailure(TransportConnector.java:576) + at reactor.netty.transport.TransportConnector$MonoChannelPromise.setFailure(TransportConnector.java:522) + at reactor.netty.transport.TransportConnector.lambda$doConnect$7(TransportConnector.java:261) + at io.netty.util.concurrent.DefaultPromise.notifyListener0(DefaultPromise.java:590) + at io.netty.util.concurrent.DefaultPromise.notifyListeners0(DefaultPromise.java:583) + at io.netty.util.concurrent.DefaultPromise.notifyListenersNow(DefaultPromise.java:559) + at io.netty.util.concurrent.DefaultPromise.notifyListeners(DefaultPromise.java:492) + at io.netty.util.concurrent.DefaultPromise.setValue0(DefaultPromise.java:636) + at io.netty.util.concurrent.DefaultPromise.setFailure0(DefaultPromise.java:629) + at io.netty.util.concurrent.DefaultPromise.tryFailure(DefaultPromise.java:118) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.fulfillConnectPromise(AbstractNioChannel.java:326) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:342) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + 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) +Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /10.113.37.107:10011 +Caused by: java.net.ConnectException: Connection refused: no further information + at java.base/sun.nio.ch.Net.pollConnect(Native Method) + at java.base/sun.nio.ch.Net.pollConnectNow(Net.java:672) + at java.base/sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:946) + at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:336) + at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:339) + at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:776) + 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) +10:16:07.028 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +10:16:08.349 [nacos-grpc-client-executor-110.42.213.184-870] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3721 +10:16:08.350 [nacos-grpc-client-executor-110.42.213.184-870] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:16:08.350 [nacos-grpc-client-executor-110.42.213.184-870] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:16:08.351 [nacos-grpc-client-executor-110.42.213.184-870] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3721 +10:22:40.637 [nacos-grpc-client-executor-110.42.213.184-949] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3723 +10:22:40.638 [nacos-grpc-client-executor-110.42.213.184-949] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:22:40.638 [nacos-grpc-client-executor-110.42.213.184-949] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +10:22:40.639 [nacos-grpc-client-executor-110.42.213.184-949] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3723 +10:22:40.945 [HeartBeat-Task-Scheduler-1] INFO d.c.b.a.s.c.d.InstanceDiscoveryListener - [lambda$removeStaleInstances$4,143] - Instance 'e346b95e8d7a' missing in DiscoveryClient services and will be removed. +10:23:11.576 [nacos-grpc-client-executor-110.42.213.184-957] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3725 +10:23:11.576 [nacos-grpc-client-executor-110.42.213.184-957] INFO c.a.n.client.naming - [isChangedServiceInfo,219] - new ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:23:11.578 [nacos-grpc-client-executor-110.42.213.184-957] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:23:11.580 [nacos-grpc-client-executor-110.42.213.184-957] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3725 +10:37:30.691 [nacos-grpc-client-executor-110.42.213.184-1138] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3727 +10:37:30.691 [nacos-grpc-client-executor-110.42.213.184-1138] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-file -> [{"ip":"10.113.37.107","port":9300,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-file","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:37:30.691 [nacos-grpc-client-executor-110.42.213.184-1138] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-file -> [] +10:37:30.692 [nacos-grpc-client-executor-110.42.213.184-1138] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3727 +10:37:30.754 [nacos-grpc-client-executor-110.42.213.184-1139] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3729 +10:37:30.755 [nacos-grpc-client-executor-110.42.213.184-1139] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-auth -> [{"ip":"10.113.37.107","port":9500,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-auth","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:37:30.756 [nacos-grpc-client-executor-110.42.213.184-1139] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-auth -> [] +10:37:30.758 [nacos-grpc-client-executor-110.42.213.184-1139] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3729 +10:37:30.969 [nacos-grpc-client-executor-110.42.213.184-1140] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3731 +10:37:30.970 [nacos-grpc-client-executor-110.42.213.184-1140] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-system -> [{"ip":"10.113.37.107","port":9707,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-system","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:37:30.970 [nacos-grpc-client-executor-110.42.213.184-1140] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-system -> [] +10:37:30.971 [nacos-grpc-client-executor-110.42.213.184-1140] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3731 +10:37:31.075 [nacos-grpc-client-executor-110.42.213.184-1141] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Receive server push request, request = NotifySubscriberRequest, requestId = 3733 +10:37:31.075 [nacos-grpc-client-executor-110.42.213.184-1141] INFO c.a.n.client.naming - [isChangedServiceInfo,225] - removed ips(1) service: DEFAULT_GROUP@@cloud-car -> [{"ip":"10.113.37.107","port":10011,"weight":1.0,"healthy":true,"enabled":true,"ephemeral":true,"clusterName":"DEFAULT","serviceName":"DEFAULT_GROUP@@cloud-car","metadata":{"preserved.register.source":"SPRING_CLOUD"},"instanceHeartBeatInterval":5000,"instanceHeartBeatTimeOut":15000,"ipDeleteTimeout":30000}] +10:37:31.076 [nacos-grpc-client-executor-110.42.213.184-1141] INFO c.a.n.client.naming - [processServiceInfo,144] - current ips:(0) service: DEFAULT_GROUP@@cloud-car -> [] +10:37:31.077 [nacos-grpc-client-executor-110.42.213.184-1141] INFO c.a.n.c.r.client - [printIfInfoEnabled,63] - [32f9a1da-74e0-4d9b-841e-1522e71c992d] Ack server push request, request = NotifySubscriberRequest, requestId = 3733 +10:37:32.164 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,95] - De-registering from Nacos Server now... +10:37:32.164 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [deregisterService,272] - [DEREGISTER-SERVICE] public deregistering service cloud-monitor with instance: Instance{instanceId='null', ip='10.113.37.107', port=9101, weight=1.0, healthy=true, enabled=true, ephemeral=true, clusterName='DEFAULT', serviceName='null', metadata={}} +10:37:32.245 [SpringApplicationShutdownHook] INFO c.a.c.n.r.NacosServiceRegistry - [deregister,115] - De-registration finished. +10:37:32.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,254] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown begin +10:37:32.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,180] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown begin +10:37:32.246 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,182] - com.alibaba.nacos.client.naming.backups.FailoverReactor do shutdown stop +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,256] - com.alibaba.nacos.client.naming.cache.ServiceInfoHolder do shutdown stop +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,204] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown begin +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,147] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown begin +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,149] - com.alibaba.nacos.client.naming.core.ServiceInfoUpdateService do shutdown stop +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,218] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown begin +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,223] - com.alibaba.nacos.client.naming.core.ServerListManager do shutdown stop +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,468] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown begin +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,470] - com.alibaba.nacos.client.naming.remote.http.NamingHttpClientProxy do shutdown stop +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,487] - Shutdown naming grpc client proxy for uuid->32f9a1da-74e0-4d9b-841e-1522e71c992d +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,331] - Shutdown grpc redo service executor java.util.concurrent.ScheduledThreadPoolExecutor@667384f8[Running, pool size = 1, active threads = 0, queued tasks = 1, completed tasks = 1726] +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,425] - Shutdown rpc client, set status to shutdown +10:37:32.247 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [shutdown,427] - Shutdown client event executor java.util.concurrent.ScheduledThreadPoolExecutor@5253117[Running, pool size = 2, active threads = 2, queued tasks = 0, completed tasks = 0] +10:37:32.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.client - [closeConnection,584] - Close current connection 1727053858187_117.143.60.138_55876 +10:37:32.248 [SpringApplicationShutdownHook] INFO c.a.n.c.r.c.g.GrpcClient - [shutdown,187] - Shutdown grpc executor java.util.concurrent.ThreadPoolExecutor@22f99a05[Running, pool size = 7, active threads = 0, queued tasks = 0, completed tasks = 1151] +10:37:32.248 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutDownAndRemove,497] - shutdown and remove naming rpc client for uuid ->32f9a1da-74e0-4d9b-841e-1522e71c992d +10:37:32.248 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialWatcher - [stop,107] - [null] CredentialWatcher is stopped +10:37:32.249 [SpringApplicationShutdownHook] INFO c.a.n.c.a.r.i.CredentialService - [free,91] - [null] CredentialService is freed +10:37:32.249 [SpringApplicationShutdownHook] INFO c.a.n.client.naming - [shutdown,211] - com.alibaba.nacos.client.naming.remote.NamingClientProxyDelegate do shutdown stop diff --git a/logs/vehicle.log b/logs/vehicle.log deleted file mode 100644 index a43cf48..0000000 --- a/logs/vehicle.log +++ /dev/null @@ -1,39 +0,0 @@ -2024-09-17 14:40:59.551 [main] INFO com.muyu.VehicleSimulationApplication:50 - Starting VehicleSimulationApplication v1.0.2 using Java 17.0.12 with PID 46984 (E:\\vehicle-simulation-1.0.2.jar started by 86188 in E:\\cloud-server-master) -2024-09-17 14:40:59.554 [main] DEBUG com.muyu.VehicleSimulationApplication:51 - Running with Spring Boot v3.2.4, Spring v6.1.5 -2024-09-17 14:40:59.555 [main] INFO com.muyu.VehicleSimulationApplication:654 - No active profile set, falling back to 1 default profile: "default" -2024-09-17 14:41:00.689 [main] WARN o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:429 - Bean 'com.dtflys.forest.springboot.ForestAutoConfiguration' of type [com.dtflys.forest.springboot.ForestAutoConfiguration$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [forestBeanProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. -2024-09-17 14:41:00.707 [main] WARN o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:437 - Bean 'forestProperties' of type [com.dtflys.forest.config.SpringForestProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected into a currently created BeanPostProcessor [forestBeanRegister]? Check the corresponding BeanPostProcessor declaration and its dependencies. -2024-09-17 14:41:00.711 [main] WARN o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:437 - Bean 'forestObjectFactory' of type [com.dtflys.forest.reflection.SpringForestObjectFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected into a currently created BeanPostProcessor [forestBeanRegister]? Check the corresponding BeanPostProcessor declaration and its dependencies. -2024-09-17 14:41:00.713 [main] WARN o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:437 - Bean 'forestInterceptorFactory' of type [com.dtflys.forest.interceptor.SpringInterceptorFactory] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected into a currently created BeanPostProcessor [forestBeanRegister]? Check the corresponding BeanPostProcessor declaration and its dependencies. -2024-09-17 14:41:00.736 [main] WARN o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:437 - Bean 'forest-com.dtflys.forest.springboot.properties.ForestConfigurationProperties' of type [com.dtflys.forest.springboot.properties.ForestConfigurationProperties] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected into a currently created BeanPostProcessor [forestBeanRegister]? Check the corresponding BeanPostProcessor declaration and its dependencies. -2024-09-17 14:41:00.779 [main] WARN o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:437 - Bean 'forestConfiguration' of type [com.dtflys.forest.config.ForestConfiguration] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected into a currently created BeanPostProcessor [forestBeanRegister]? Check the corresponding BeanPostProcessor declaration and its dependencies. -2024-09-17 14:41:00.783 [main] WARN o.s.c.s.PostProcessorRegistrationDelegate$BeanPostProcessorChecker:437 - Bean 'forestConverterBeanListener' of type [com.dtflys.forest.spring.ConverterBeanListener] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). Is this bean getting eagerly injected into a currently created BeanPostProcessor [forestBeanRegister]? Check the corresponding BeanPostProcessor declaration and its dependencies. -2024-09-17 14:41:00.808 [main] INFO com.dtflys.forest.scanner.ClassPathClientScanner:153 - [Forest] Created Forest Client Bean with name 'clientAdmin' and Proxy of 'com.muyu.vehicle.api.ClientAdmin' client interface -2024-09-17 14:41:01.191 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer:109 - Tomcat initialized with port 81 (http) -2024-09-17 14:41:01.211 [main] INFO org.apache.catalina.core.StandardService:173 - Starting service [Tomcat] -2024-09-17 14:41:01.212 [main] INFO org.apache.catalina.core.StandardEngine:173 - Starting Servlet engine: [Apache Tomcat/10.1.19] -2024-09-17 14:41:01.284 [main] INFO o.a.c.core.ContainerBase.[Tomcat].[localhost].[/]:173 - Initializing Spring embedded WebApplicationContext -2024-09-17 14:41:01.286 [main] INFO o.s.b.w.s.c.ServletWebServerApplicationContext:296 - Root WebApplicationContext: initialization completed in 1639 ms -2024-09-17 14:41:01.629 [main] INFO com.zaxxer.hikari.HikariDataSource:110 - HikariPool-1 - Starting... -2024-09-17 14:41:03.797 [main] INFO com.zaxxer.hikari.pool.HikariPool:565 - HikariPool-1 - Added connection com.mysql.cj.jdbc.ConnectionImpl@509a6095 -2024-09-17 14:41:03.801 [main] INFO com.zaxxer.hikari.HikariDataSource:123 - HikariPool-1 - Start completed. -2024-09-17 14:41:03.806 [main] INFO com.muyu.config.DataSourceConfig:36 - Դ[vehicle-test-db]ʼɹ -2024-09-17 14:41:05.027 [main] INFO o.s.boot.web.embedded.tomcat.TomcatWebServer:241 - Tomcat started on port 81 (http) with context path '' -2024-09-17 14:41:05.041 [main] INFO com.muyu.VehicleSimulationApplication:56 - Started VehicleSimulationApplication in 6.044 seconds (process running for 6.644) -2024-09-17 14:41:05.049 [main] INFO com.muyu.vehicle.core.VehicleConfiguration:40 - ʼʼݿ⵱мݵڴ浱,ÿ[10] -2024-09-17 14:41:05.385 [main] DEBUG c.m.w.mapper.VehicleInfoMapper.selectList_mpCount:135 - ==> Preparing: SELECT COUNT(*) AS total FROM vehicle_info -2024-09-17 14:41:05.407 [main] DEBUG c.m.w.mapper.VehicleInfoMapper.selectList_mpCount:135 - ==> Parameters: -2024-09-17 14:41:05.505 [main] DEBUG c.m.w.mapper.VehicleInfoMapper.selectList_mpCount:135 - <== Total: 1 -2024-09-17 14:41:05.515 [main] DEBUG com.muyu.web.mapper.VehicleInfoMapper.selectList:135 - ==> Preparing: SELECT id,vin,tenant_id,remaining_battery,battery_level,total_mileage,create_time FROM vehicle_info LIMIT ? -2024-09-17 14:41:05.516 [main] DEBUG com.muyu.web.mapper.VehicleInfoMapper.selectList:135 - ==> Parameters: 10(Long) -2024-09-17 14:41:05.578 [main] DEBUG com.muyu.web.mapper.VehicleInfoMapper.selectList:135 - <== Total: 8 -2024-09-17 14:41:05.584 [main] DEBUG c.muyu.web.service.impl.VehicleInstanceServiceImpl:61 - : [VIN12345678912345] -2024-09-17 14:41:05.585 [main] DEBUG c.muyu.web.service.impl.VehicleInstanceServiceImpl:61 - : [VIN12345678912344] -2024-09-17 14:41:05.585 [main] DEBUG c.muyu.web.service.impl.VehicleInstanceServiceImpl:61 - : [5MY48TZNZ3A3NT83Z] -2024-09-17 14:41:05.586 [main] DEBUG c.muyu.web.service.impl.VehicleInstanceServiceImpl:61 - : [FBATKLXDQSN8JWR65] -2024-09-17 14:41:05.586 [main] DEBUG c.muyu.web.service.impl.VehicleInstanceServiceImpl:61 - : [J2TK3Q5GO5QD5U1I8] -2024-09-17 14:41:05.587 [main] DEBUG c.muyu.web.service.impl.VehicleInstanceServiceImpl:61 - : [6FEHSCO7WV7X6V92B] -2024-09-17 14:41:05.587 [main] DEBUG c.muyu.web.service.impl.VehicleInstanceServiceImpl:61 - : [G3UYG711ODT8MV6YX] -2024-09-17 14:41:05.588 [main] DEBUG c.muyu.web.service.impl.VehicleInstanceServiceImpl:61 - : [VIN12345678913245] -2024-09-17 14:41:05.588 [main] DEBUG com.muyu.vehicle.core.VehicleConfiguration:45 - [1]ҳ[8] -2024-09-17 14:41:05.588 [main] INFO com.muyu.vehicle.core.VehicleConfiguration:50 - ݼɣʱ539 MS